LANCommander/LANCommander.Client.Data/Models/Platform.cs
2024-07-12 18:34:16 -05:00

13 lines
346 B
C#

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; }
}
}