Added Genre to SDK models

dashboard
Pat Hartl 2023-01-14 15:10:53 -06:00
parent c525a5f38e
commit 97c32895da
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace LANCommander.SDK.Models
{
public class Genre : BaseModel
{
public string Name { get; set; }
public virtual IEnumerable<Game> Games { get; set; }
}
}