using System.Text.Json.Serialization; namespace LANCommander.Server.Data.Models { public class Company : BaseModel { public string Name { get; set; } [JsonIgnore] public ICollection PublishedGames { get; set; } [JsonIgnore] public ICollection DevelopedGames { get; set; } } }