LANCommander/Data/Models/Company.cs
2023-01-02 18:31:51 -06:00

10 lines
273 B
C#

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