14 lines
345 B
C#
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; }
|
|
}
|
|
}
|