using System.ComponentModel.DataAnnotations.Schema; using System.Text.Json.Serialization; namespace LANCommander.Launcher.Data.Models { [Table("Platforms")] public class Platform : BaseTaxonomyModel { public string Name { get; set; } [JsonIgnore] public virtual ICollection Games { get; set; } } }