ApplicationData.cs 754 B

123456789101112131415161718192021
  1. using LibHac.Common;
  2. using LibHac.Ns;
  3. namespace Ryujinx.Ui.App.Common
  4. {
  5. public class ApplicationData
  6. {
  7. public bool Favorite { get; set; }
  8. public byte[] Icon { get; set; }
  9. public string TitleName { get; set; }
  10. public string TitleId { get; set; }
  11. public string Developer { get; set; }
  12. public string Version { get; set; }
  13. public string TimePlayed { get; set; }
  14. public string LastPlayed { get; set; }
  15. public string FileExtension { get; set; }
  16. public string FileSize { get; set; }
  17. public string Path { get; set; }
  18. public BlitStruct<ApplicationControlProperty> ControlHolder { get; set; }
  19. }
  20. }