LANCommander/LANCommander.Server.Data/Models/Collection.cs
2024-11-27 01:51:47 -06:00

12 lines
301 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 ICollection<Role> Roles { get; set; }
}
}