using Remotely_Library.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Remotely_Library.Models { public class Organization { [Key] public string ID { get; set; } = Guid.NewGuid().ToString().Replace("-", ""); [StringLength(25)] public string OrganizationName { get; set; } public List RemotelyUsers { get; set; } public List Machines { get; set; } public List CommandContexts { get; set; } public List EventLogs { get; set; } public List PermissionGroups { get; set; } = new List(); public List InviteLinks { get; set; } public List SharedFiles { get; set; } } }