blob: e19f7483fc4e58b4097431c01e99369685b2f1ec (
plain)
1
2
3
4
5
6
7
8
9
10
|
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";
}
}
|