diff --git a/LANCommander/Data/Models/Collection.cs b/LANCommander/Data/Models/Collection.cs new file mode 100644 index 0000000..c1be8aa --- /dev/null +++ b/LANCommander/Data/Models/Collection.cs @@ -0,0 +1,15 @@ +using System.ComponentModel.DataAnnotations.Schema; +using System.Text.Json.Serialization; + +namespace LANCommander.Data.Models +{ + [Table("Collections")] + public class Collection : BaseModel + { + public string Name { get; set; } + [JsonIgnore] + public virtual ICollection Games { get; set; } + [JsonIgnore] + public virtual ICollection Roles { get; set; } + } +}