2021-01-08 05:14:13 -03:00
|
|
|
|
using LibHac.Common;
|
2020-03-25 14:09:38 -03:00
|
|
|
|
using LibHac.Ns;
|
|
|
|
|
|
2021-01-08 05:14:13 -03:00
|
|
|
|
namespace Ryujinx.Ui.App
|
2019-11-29 01:32:51 -03:00
|
|
|
|
{
|
2021-01-08 05:14:13 -03:00
|
|
|
|
public class ApplicationData
|
2019-11-29 01:32:51 -03: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 14:09:38 -03:00
|
|
|
|
public BlitStruct<ApplicationControlProperty> ControlHolder { get; set; }
|
2019-11-29 01:32:51 -03:00
|
|
|
|
}
|
2021-01-08 05:14:13 -03:00
|
|
|
|
}
|