namespace zero.Identity;
///
/// A zero user can access the zero API and backoffice by granting the necessary permissions
///
[RavenCollection("Users")]
public class ZeroUser : 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; }
}