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