fengling-console/Models/Dtos/UserDto.cs
movingsam 4d2127637d refactor: clean up Member module and update Console
- Remove redundant PointsRule repositories (use single PointsRuleRepository)
- Clean up Member migrations and consolidate to single Init migration
- Update Console frontend API and components for Tenant
- Add H5LinkService for member H5 integration
2026-02-18 23:34:40 +08:00

17 lines
534 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? Phone { 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 DateTime CreatedAt { get; set; }
}