using Microsoft.AspNetCore.Identity; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Threading.Tasks; namespace Remotely_Library.Models { public class RemotelyUser : IdentityUser { public RemotelyUser() { UserOptions = new RemotelyUserOptions(); Organization = new Organization(); } public RemotelyUserOptions UserOptions { get; set; } public Organization Organization { get; set; } public string OrganizationID { get; set; } public List PermissionGroups { get; set; } = new List(); public bool IsAdministrator { get; set; } = true; } }