2025-12-06 19:33:43 -06:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
2023-01-12 01:25:32 -06:00
|
|
|
|
|
2024-08-04 18:44:33 -05:00
|
|
|
|
namespace LANCommander.Server.Data.Models
|
2023-01-02 15:44:04 -06:00
|
|
|
|
{
|
2025-12-06 19:33:43 -06:00
|
|
|
|
public class Company : BaseTaxonomyModel
|
2023-01-02 15:44:04 -06:00
|
|
|
|
{
|
2023-01-12 01:25:32 -06:00
|
|
|
|
[JsonIgnore]
|
2025-02-09 14:10:06 -06:00
|
|
|
|
public ICollection<Game> PublishedGames { get; set; }
|
2023-01-12 01:25:32 -06:00
|
|
|
|
[JsonIgnore]
|
2025-02-09 14:10:06 -06:00
|
|
|
|
public ICollection<Game> DevelopedGames { get; set; }
|
2025-12-06 19:33:43 -06:00
|
|
|
|
[JsonIgnore]
|
|
|
|
|
|
[NotMapped]
|
|
|
|
|
|
public override ICollection<Game> Games { get; set; }
|
2023-01-02 15:44:04 -06:00
|
|
|
|
}
|
|
|
|
|
|
}
|