LANCommander/LANCommander.Server.Data/Models/Category.cs

12 lines
291 B
C#
Raw Permalink Normal View History

2023-01-08 21:43:01 -06:00
using System.ComponentModel.DataAnnotations.Schema;
2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Data.Models
2023-01-08 21:43:01 -06:00
{
[Table("Categories")]
public class Category : BaseTaxonomyModel
2023-01-08 21:43:01 -06:00
{
2024-11-27 01:51:47 -06:00
public Category Parent { get; set; }
public ICollection<Category> Children { get; set; }
2023-01-08 21:43:01 -06:00
}
}