mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-28 03:40:50 +01:00
9 lines
232 B
C#
9 lines
232 B
C#
|
namespace Ryujinx.Ui.App
|
|||
|
{
|
|||
|
public class ApplicationMetadata
|
|||
|
{
|
|||
|
public bool Favorite { get; set; }
|
|||
|
public double TimePlayed { get; set; }
|
|||
|
public string LastPlayed { get; set; } = "Never";
|
|||
|
}
|
|||
|
}
|