aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ui.Common/App/ApplicationData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Ui.Common/App/ApplicationData.cs')
-rw-r--r--Ryujinx.Ui.Common/App/ApplicationData.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Ryujinx.Ui.Common/App/ApplicationData.cs b/Ryujinx.Ui.Common/App/ApplicationData.cs
new file mode 100644
index 00000000..758a03ba
--- /dev/null
+++ b/Ryujinx.Ui.Common/App/ApplicationData.cs
@@ -0,0 +1,21 @@
+using LibHac.Common;
+using LibHac.Ns;
+
+namespace Ryujinx.Ui.App.Common
+{
+ public class ApplicationData
+ {
+ 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; }
+ public BlitStruct<ApplicationControlProperty> ControlHolder { get; set; }
+ }
+} \ No newline at end of file