LANCommander/LANCommander.Server.Data/Models/Company.cs

17 lines
466 B
C#
Raw Permalink Normal View History

2025-12-06 19:33:43 -06:00
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
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
{
[JsonIgnore]
2025-02-09 14:10:06 -06:00
public ICollection<Game> PublishedGames { get; set; }
[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
}
}