LANCommander/LANCommander/Data/Models/Category.cs
2023-01-08 21:43:01 -06:00

13 lines
394 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Data.Models
{
[Table("Categories")]
public class Category : BaseModel
{
public string Name { get; set; }
public virtual Category Parent { get; set; }
public virtual ICollection<Category> Children { get; set; }
public virtual ICollection<Game> Games { get; set; }
}
}