LANCommander/LANCommander.Client.Data/Models/Platform.cs

14 lines
346 B
C#
Raw Normal View History

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