2023-12-04 01:42:02 -06:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2024-08-04 18:44:33 -05:00
|
|
|
|
namespace LANCommander.Server.Data.Models
|
2023-12-04 01:42:02 -06:00
|
|
|
|
{
|
|
|
|
|
|
[Table("Collections")]
|
2024-06-30 22:55:55 -05:00
|
|
|
|
public class Collection : BaseTaxonomyModel
|
2023-12-04 01:42:02 -06:00
|
|
|
|
{
|
|
|
|
|
|
[JsonIgnore]
|
2024-11-27 01:51:47 -06:00
|
|
|
|
public ICollection<Role> Roles { get; set; }
|
2023-12-04 01:42:02 -06:00
|
|
|
|
}
|
|
|
|
|
|
}
|