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