gitignore for swift

This commit is contained in:
Ben Lawrence 2024-11-29 17:46:22 +13:00
parent 3ce5b7d4a0
commit 03581ea679
No known key found for this signature in database
GPG key ID: 0CC165DA94B90568
18 changed files with 76 additions and 73 deletions

View file

@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace Ryujinx.UI.App.Common
{
public struct LdnGameData
{
public string Id { get; set; }
public int PlayerCount { get; set; }
public int MaxPlayerCount { get; set; }
public string GameName { get; set; }
public string TitleId { get; set; }
public string Mode { get; set; }
public string Status { get; set; }
public IEnumerable<string> Players { get; set; }
}
}