d9053bbe37
* Add save manager to account selector * add fallback to app metadata for titlename if app is not in gamelist * Allow recovering lost accounts
10 lines
No EOL
281 B
C#
10 lines
No EOL
281 B
C#
namespace Ryujinx.Ui.App.Common
|
|
{
|
|
public class ApplicationMetadata
|
|
{
|
|
public string Title { get; set; }
|
|
public bool Favorite { get; set; }
|
|
public double TimePlayed { get; set; }
|
|
public string LastPlayed { get; set; } = "Never";
|
|
}
|
|
} |