ApplicationMetadata.cs 281 B

12345678910
  1. namespace Ryujinx.Ui.App.Common
  2. {
  3. public class ApplicationMetadata
  4. {
  5. public string Title { get; set; }
  6. public bool Favorite { get; set; }
  7. public double TimePlayed { get; set; }
  8. public string LastPlayed { get; set; } = "Never";
  9. }
  10. }