LANCommander/Data/Models/Company.cs
2023-01-02 15:44:04 -06:00

10 lines
257 B
C#

namespace LANCommander.Data.Models
{
public class Company : BaseModel
{
public string Name { get; set; }
public ICollection<Game> PublishedGames { get; set; }
public ICollection<Game> DevelopedGames { get; set; }
}
}