2021-01-08 03:14:13 -05:00
|
|
|
|
using LibHac.Common;
|
2020-03-25 13:09:38 -04:00
|
|
|
|
using LibHac.Ns;
|
|
|
|
|
|
2021-01-08 03:14:13 -05:00
|
|
|
|
namespace Ryujinx.Ui.App
|
2019-11-28 23:32:51 -05:00
|
|
|
|
{
|
2021-01-08 03:14:13 -05:00
|
|
|
|
public class ApplicationData
|
2019-11-28 23:32:51 -05:00
|
|
|
|
{
|
|
|
|
|
public bool Favorite { get; set; }
|
|
|
|
|
public byte[] Icon { get; set; }
|
|
|
|
|
public string TitleName { get; set; }
|
|
|
|
|
public string TitleId { get; set; }
|
|
|
|
|
public string Developer { get; set; }
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
public string TimePlayed { get; set; }
|
|
|
|
|
public string LastPlayed { get; set; }
|
|
|
|
|
public string FileExtension { get; set; }
|
|
|
|
|
public string FileSize { get; set; }
|
|
|
|
|
public string Path { get; set; }
|
2020-03-25 13:09:38 -04:00
|
|
|
|
public BlitStruct<ApplicationControlProperty> ControlHolder { get; set; }
|
2019-11-28 23:32:51 -05:00
|
|
|
|
}
|
2021-01-08 03:14:13 -05:00
|
|
|
|
}
|