blob: 2bd87c0e6a915b58d37740dedbc3dc1bcd368c0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
namespace Ryujinx.Ui.App
{
public class ApplicationMetadata
{
public bool Favorite { get; set; }
public double TimePlayed { get; set; }
public string LastPlayed { get; set; } = "Never";
}
}
|