LANCommander/LANCommander.Client.Data/Models/Company.cs
2024-05-21 20:51:09 -05:00

14 lines
361 B
C#

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