Files
mixtape/zero.Backoffice/Endpoints/Account/Models/UserModel.cs
T

23 lines
450 B
C#
Raw Normal View History

2021-12-03 14:45:49 +01:00
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; }
2022-01-23 01:37:37 +01:00
public string Culture { get; set; }
2021-12-03 14:45:49 +01:00
}