using System.ComponentModel.DataAnnotations.Schema; using System.Text.Json.Serialization; namespace LANCommander.Server.Data.Models { public class Company : BaseTaxonomyModel { [JsonIgnore] public ICollection PublishedGames { get; set; } [JsonIgnore] public ICollection DevelopedGames { get; set; } [JsonIgnore] [NotMapped] public override ICollection Games { get; set; } } }