Added game ID to manifest

pull/32/head
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 Guid Id { get; set; }
public string Title { get; set; }
public string SortTitle { get; set; }
public string Description { get; set; }

View File

@ -44,6 +44,7 @@ namespace LANCommander.Services
var manifest = new GameManifest()
{
Id = game.Id,
Title = game.Title,
SortTitle = game.SortTitle,
Description = game.Description,