LANCommander/LANCommander.SDK/Models/Genre.cs

11 lines
225 B
C#
Raw Normal View History

2023-01-14 15:10:53 -06:00
using System.Collections.Generic;
namespace LANCommander.SDK.Models
{
public class Genre : BaseModel
{
public string Name { get; set; }
public virtual IEnumerable<Game> Games { get; set; }
}
}