Add default values to ApplicationData directly

This commit is contained in:
TSR Berry 2023-08-27 00:30:49 +02:00
commit 5605c293ab
No known key found for this signature in database
GPG key ID: 52353C0A4CCA15E2

View file

@ -19,10 +19,10 @@ namespace Ryujinx.UI.App.Common
{ {
public bool Favorite { get; set; } public bool Favorite { get; set; }
public byte[] Icon { get; set; } public byte[] Icon { get; set; }
public string TitleName { get; set; } public string TitleName { get; set; } = "Unknown";
public string TitleId { get; set; } public string TitleId { get; set; } = "0000000000000000";
public string Developer { get; set; } public string Developer { get; set; } = "Unknown";
public string Version { get; set; } public string Version { get; set; } = "0";
public TimeSpan TimePlayed { get; set; } public TimeSpan TimePlayed { get; set; }
public DateTime? LastPlayed { get; set; } public DateTime? LastPlayed { get; set; }
public string FileExtension { get; set; } public string FileExtension { get; set; }