/ src / Ryujinx.Common / Configuration / DownloadableContentNca.cs
DownloadableContentNca.cs
 1  using System.Text.Json.Serialization;
 2  
 3  namespace Ryujinx.Common.Configuration
 4  {
 5      public struct DownloadableContentNca
 6      {
 7          [JsonPropertyName("path")]
 8          public string FullPath { get; set; }
 9          [JsonPropertyName("title_id")]
10          public ulong TitleId { get; set; }
11          [JsonPropertyName("is_enabled")]
12          public bool Enabled { get; set; }
13      }
14  }