LANCommander/LANCommander.Server/Data/Models/Company.cs
2024-08-04 18:44:33 -05:00

14 lines
361 B
C#

using System.Text.Json.Serialization;
namespace LANCommander.Server.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; }
}
}