mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-11 04:02:32 -03:00
10 lines
221 B
C#
10 lines
221 B
C#
|
namespace Ryujinx.Ui
|
|||
|
{
|
|||
|
internal struct ApplicationMetadata
|
|||
|
{
|
|||
|
public bool Favorite { get; set; }
|
|||
|
public double TimePlayed { get; set; }
|
|||
|
public string LastPlayed { get; set; }
|
|||
|
}
|
|||
|
}
|