hello-shop/src/HelloShop.IdentityService/Models/Users/UserListItem.cs
2024-04-04 07:43:24 +08:00

19 lines
395 B
C#

namespace HelloShop.IdentityService;
public class UserListItem
{
public int Id { get; init; }
public required string UserName { get; init; }
public string? PhoneNumber { get; set; }
public bool PhoneNumberConfirmed { get; set; }
public string? Email { get; set; }
public bool EmailConfirmed { get; set; }
public DateTimeOffset CreationTime { get; init; }
}