Added Genre to SDK models
parent
c525a5f38e
commit
97c32895da
|
@ -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…
Reference in New Issue