DownloadableContentContainer.cs 390 B

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