mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-10-01 12:30:00 +02:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
13 lines
388 B
C#
13 lines
388 B
C#
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; }
|
|
}
|
|
}
|