12 lines
309 B
C#
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; }
|
|
}
|
|
}
|