fengling-console/Models/Dtos/UserDto.cs
2026-02-21 15:05:37 +08:00

17 lines
554 B
C#

namespace Fengling.Console.Models.Dtos;
public class UserDto
{
public long Id { get; set; }
public string? UserName { get; set; }
public string? Email { get; set; }
public string? RealName { get; set; }
public string? PhoneNumber { get; set; }
public string? TenantCode { get; set; } = "";
public string? TenantName { get; set; } = "";
public List<string> Roles { get; set; } = new();
public bool EmailConfirmed { get; set; }
public bool IsActive { get; set; }
public DateTimeOffset CreatedAt { get; set; }
}