LANCommander/LANCommander.Launcher.Data/Models/Company.cs

15 lines
403 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
namespace LANCommander.Launcher.Data.Models
{
public class Company : BaseModel
{
public string Name { get; set; }
[JsonIgnore]
2025-01-18 22:36:41 -06:00
public virtual ICollection<Game> PublishedGames { get; set; } = new List<Game>();
[JsonIgnore]
2025-01-18 22:36:41 -06:00
public virtual ICollection<Game> DevelopedGames { get; set; } = new List<Game>();
}
}