ApplicationData.cs 674 B

123456789101112131415161718
  1. namespace Ryujinx.Ui
  2. {
  3. public struct ApplicationData
  4. {
  5. public bool Favorite { get; set; }
  6. public byte[] Icon { get; set; }
  7. public string TitleName { get; set; }
  8. public string TitleId { get; set; }
  9. public string Developer { get; set; }
  10. public string Version { get; set; }
  11. public string TimePlayed { get; set; }
  12. public string LastPlayed { get; set; }
  13. public string FileExtension { get; set; }
  14. public string FileSize { get; set; }
  15. public string Path { get; set; }
  16. public string SaveDataPath { get; set; }
  17. }
  18. }