13 lines
396 B
C#
13 lines
396 B
C#
namespace Application.Common.Services.SecurityManager;
|
|
|
|
public record UpdateUserResultDto
|
|
{
|
|
public string? UserId { get; init; }
|
|
public string? Email { get; init; }
|
|
public string? FirstName { get; init; }
|
|
public string? LastName { get; init; }
|
|
public bool? EmailConfirmed { get; init; }
|
|
public bool? IsBlocked { get; init; }
|
|
public bool? IsDeleted { get; init; }
|
|
}
|