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

15 lines
345 B
C#
Raw Permalink Normal View History

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
{
public class Company : BaseModel
{
public string Name { get; set; }
[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; }
2023-01-02 15:44:04 -06:00
}
}