namespace vassago.Models; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using vassago.Models; public class UAC { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public Guid Id { get; set; } /// ///behaviors will have ///a hardcoded ID thing ///so they can find theirs. /// public Guid OwnerId { get; set;} public string DisplayName { get; set; } public List AccountInChannels { get; set; } public List Channels { get; set; } public List Users { get; set; } }