LANCommander/LANCommander.SDK/Models/Company.cs

12 lines
306 B
C#
Raw Permalink Normal View History

2023-01-05 02:31:02 +00:00
using System.Collections.Generic;
namespace LANCommander.SDK.Models
{
public class Company : BaseModel
{
public string Name { get; set; }
public virtual IEnumerable<Game> PublishedGames { get; set; }
public virtual IEnumerable<Game> DevelopedGames { get; set; }
}
}