Files
mixtape/zero.Backoffice/Endpoints/Account/Models/UserModel.cs
T
2021-12-03 14:45:49 +01:00

21 lines
411 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; }
}