LANCommander.PlaynitePlugin/LANCommander/Data/Models/Collection.cs

12 lines
302 B
C#

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