/ src / Ryujinx.Common / Configuration / DownloadableContentContainer.cs
DownloadableContentContainer.cs
 1  using System.Collections.Generic;
 2  using System.Text.Json.Serialization;
 3  
 4  namespace Ryujinx.Common.Configuration
 5  {
 6      public struct DownloadableContentContainer
 7      {
 8          [JsonPropertyName("path")]
 9          public string ContainerPath { get; set; }
10          [JsonPropertyName("dlc_nca_list")]
11          public List<DownloadableContentNca> DownloadableContentNcaList { get; set; }
12      }
13  }