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

12 lines
271 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-02-09 14:10:06 -06:00
public ICollection<Game> Games { get; set; }
}
}