Files
mixtape/zero.Core/Entities/User/BackofficeUser.cs
T
2021-05-04 17:23:52 +02:00

29 lines
595 B
C#

using zero.Core.Attributes;
namespace zero.Core.Entities
{
[Collection("Users")]
public class BackofficeUser : ZeroIdentityUser
{
/// <summary>
/// Application the user registered in
/// </summary>
public string AppId { get; set; }
/// <summary>
/// Currently selected app id for the backoffice
/// </summary>
public string CurrentAppId { get; set; }
/// <summary>
/// Super user
/// </summary>
public bool IsSuper { get; set; }
/// <summary>
/// Avatar image
/// </summary>
public string AvatarId { get; set; }
}
}