Added Genre to SDK models
This commit is contained in:
parent
c525a5f38e
commit
97c32895da
1 changed files with 10 additions and 0 deletions
10
LANCommander.SDK/Models/Genre.cs
Normal file
10
LANCommander.SDK/Models/Genre.cs
Normal 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; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue