hello-shop/src/HelloShop.IdentityService/Models/Users/UserListItem.cs
2024-08-29 23:07:14 +08:00

22 lines
536 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace HelloShop.IdentityService.Models.Users;
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; }
}