LANCommander/LANCommander.Server.Data/Models/Company.cs
2025-02-09 14:10:06 -06:00

14 lines
345 B
C#

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