LANCommander/LANCommander.Server.Data/Models/Collection.cs

13 lines
301 B
C#
Raw Normal View History

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")]
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
}
}