using Remotely.Shared.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Remotely.Shared.Models { public class Organization { [Key] public string ID { get; set; } = Guid.NewGuid().ToString(); [StringLength(25)] public string OrganizationName { get; set; } public virtual ICollection RemotelyUsers { get; set; } public virtual ICollection Devices { get; set; } public virtual ICollection CommandContexts { get; set; } public virtual ICollection EventLogs { get; set; } public virtual ICollection DeviceGroups { get; set; } public virtual ICollection InviteLinks { get; set; } public virtual ICollection SharedFiles { get; set; } } }