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; }
|
|||
|
}
|
|||
|
}
|