Added game ID to manifest
This commit is contained in:
parent
81f8d55694
commit
ff6f9997f5
2 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@ namespace LANCommander.SDK
|
||||||
{
|
{
|
||||||
public class GameManifest
|
public class GameManifest
|
||||||
{
|
{
|
||||||
|
public Guid Id { get; set; }
|
||||||
public string Title { get; set; }
|
public string Title { get; set; }
|
||||||
public string SortTitle { get; set; }
|
public string SortTitle { get; set; }
|
||||||
public string Description { get; set; }
|
public string Description { get; set; }
|
||||||
|
|
|
@ -44,6 +44,7 @@ namespace LANCommander.Services
|
||||||
|
|
||||||
var manifest = new GameManifest()
|
var manifest = new GameManifest()
|
||||||
{
|
{
|
||||||
|
Id = game.Id,
|
||||||
Title = game.Title,
|
Title = game.Title,
|
||||||
SortTitle = game.SortTitle,
|
SortTitle = game.SortTitle,
|
||||||
Description = game.Description,
|
Description = game.Description,
|
||||||
|
|
Loading…
Add table
Reference in a new issue