13 lines
394 B
C#
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; }
|
|
}
|
|
}
|