LANCommander/LANCommander.Server.Data/Models/BaseTaxonomyModel.cs

12 lines
291 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Data.Models
{
public abstract class BaseTaxonomyModel : BaseModel
{
public string Name { get; set; }
[JsonIgnore]
2025-01-20 01:22:56 -06:00
public ICollection<Game> Games { get; set; } = new List<Game>();
}
}