Added game ID to manifest

This commit is contained in:
Pat Hartl 2023-11-09 19:38:32 -06:00
parent 81f8d55694
commit ff6f9997f5
2 changed files with 2 additions and 0 deletions

View file

@ -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; }

View file

@ -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,