LANCommander/LANCommander.SDK/Models/Genre.cs
2023-01-14 15:10:53 -06:00

10 lines
225 B
C#

using System.Collections.Generic;
namespace LANCommander.SDK.Models
{
public class Genre : BaseModel
{
public string Name { get; set; }
public virtual IEnumerable<Game> Games { get; set; }
}
}