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