7 lines
192 B
C#
7 lines
192 B
C#
using ApplicationLayer.Services.AuthServices.Common;
|
|
|
|
namespace ApplicationLayer.Services.Users.Requests
|
|
{
|
|
public record ChangeUserAuthDataRequest(Guid UserId, AuthData NewAuthData);
|
|
}
|