Files
mixtape/zero.Backoffice/Endpoints/Account/Models/UserModel.cs
T
2022-01-23 01:37:37 +01:00

23 lines
450 B
C#

namespace zero.Backoffice.Endpoints.Account;
public class UserModel : ZeroIdEntity
{
public string CurrentAppId { get; set; }
public bool IsSuper { get; set; }
public string AvatarId { get; set; }
public string Email { get; set; }
public string Name { get; set; }
public bool IsActive { get; set; }
public DateTimeOffset CreatedDate { get; set; }
public string Flavor { get; set; }
public string Culture { get; set; }
}