LANCommander/LANCommander.Launcher.Data/Models/Platform.cs

14 lines
348 B
C#
Raw Permalink Normal View History

2024-07-12 18:34:16 -05:00
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
namespace LANCommander.Launcher.Data.Models
2024-07-12 18:34:16 -05:00
{
[Table("Platforms")]
public class Platform : BaseTaxonomyModel
{
public string Name { get; set; }
[JsonIgnore]
public virtual ICollection<Game> Games { get; set; }
}
}