2024-05-20 19:42:31 -05:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2024-08-04 17:53:19 -05:00
|
|
|
|
namespace LANCommander.Launcher.Data.Models
|
2024-05-20 19:42:31 -05:00
|
|
|
|
{
|
|
|
|
|
|
public class Company : BaseModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
2025-01-18 22:36:41 -06:00
|
|
|
|
public virtual ICollection<Game> PublishedGames { get; set; } = new List<Game>();
|
2024-05-20 19:42:31 -05:00
|
|
|
|
[JsonIgnore]
|
2025-01-18 22:36:41 -06:00
|
|
|
|
public virtual ICollection<Game> DevelopedGames { get; set; } = new List<Game>();
|
2024-05-20 19:42:31 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|