2021-01-08 09:14:13 +01:00
|
|
|
|
using LibHac.Common;
|
2020-03-25 18:09:38 +01:00
|
|
|
|
using LibHac.Ns;
|
|
|
|
|
|
2022-05-15 13:30:15 +02:00
|
|
|
|
namespace Ryujinx.Ui.App.Common
|
2019-11-29 05:32:51 +01:00
|
|
|
|
{
|
2021-01-08 09:14:13 +01:00
|
|
|
|
public class ApplicationData
|
2019-11-29 05:32:51 +01: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; }
|
2022-12-06 02:40:06 +01:00
|
|
|
|
public double TimePlayedNum { get; set; }
|
2019-11-29 05:32:51 +01:00
|
|
|
|
public string LastPlayed { get; set; }
|
|
|
|
|
public string FileExtension { get; set; }
|
|
|
|
|
public string FileSize { get; set; }
|
2022-12-06 02:40:06 +01:00
|
|
|
|
public double FileSizeBytes { get; set; }
|
2019-11-29 05:32:51 +01:00
|
|
|
|
public string Path { get; set; }
|
2020-03-25 18:09:38 +01:00
|
|
|
|
public BlitStruct<ApplicationControlProperty> ControlHolder { get; set; }
|
2019-11-29 05:32:51 +01:00
|
|
|
|
}
|
2021-01-08 09:14:13 +01:00
|
|
|
|
}
|