LANCommander/LANCommander.Server.Data/Models/Company.cs
2024-11-27 01:51:47 -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; }
}
}