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

12 lines
279 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-12-06 19:33:43 -06:00
public virtual ICollection<Game> Games { get; set; }
}
}