ApplicationMetadata.cs 239 B

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