LANCommander/LANCommander.SDK/Models/Genre.cs

11 lines
225 B
C#
Raw Permalink Normal View History

2023-01-14 21:10:53 +00: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; }
}
}