Remotely/Remotely_Shared/Models/Organization.cs
2021-07-29 07:53:51 -07:00

23 lines
920 B
C#

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<RemotelyUser> RemotelyUsers { get; set; }
public virtual ICollection<Device> Devices { get; set; }
public virtual ICollection<CommandContext> CommandContexts { get; set; }
public virtual ICollection<EventLog> EventLogs { get; set; }
public virtual ICollection<PermissionGroup> PermissionGroups { get; set; } = new List<PermissionGroup>();
public virtual ICollection<InviteLink> InviteLinks { get; set; }
public virtual ICollection<SharedFile> SharedFiles { get; set; }
}
}