LANCommander/LANCommander.Server/Data/Models/Collection.cs
2024-08-04 18:44:33 -05:00

12 lines
309 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
namespace LANCommander.Server.Data.Models
{
[Table("Collections")]
public class Collection : BaseTaxonomyModel
{
[JsonIgnore]
public virtual ICollection<Role> Roles { get; set; }
}
}