aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/DownloadableContentContainer.cs
blob: b6ae2f3fb9c8e8356ca62a7258ffd60150ed1d1d (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; }
    }
}