LANCommander/LANCommander.Launcher.Data/Models/BaseTaxonomyModel.cs

12 lines
301 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
namespace LANCommander.Launcher.Data.Models
{
public abstract class BaseTaxonomyModel : BaseModel
{
public string Name { get; set; }
[JsonIgnore]
2025-01-18 22:36:41 -06:00
public virtual ICollection<Game> Games { get; set; } = new List<Game>();
}
}