aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Common/Configuration')
-rw-r--r--Ryujinx.Common/Configuration/DlcContainer.cs10
-rw-r--r--Ryujinx.Common/Configuration/DlcNca.cs9
-rw-r--r--Ryujinx.Common/Configuration/DownloadableContentContainer.cs13
-rw-r--r--Ryujinx.Common/Configuration/DownloadableContentNca.cs14
4 files changed, 27 insertions, 19 deletions
diff --git a/Ryujinx.Common/Configuration/DlcContainer.cs b/Ryujinx.Common/Configuration/DlcContainer.cs
deleted file mode 100644
index c056ac1e..00000000
--- a/Ryujinx.Common/Configuration/DlcContainer.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using System.Collections.Generic;
-
-namespace Ryujinx.Common.Configuration
-{
- public struct DlcContainer
- {
- public string Path { get; set; }
- public List<DlcNca> DlcNcaList { get; set; }
- }
-} \ No newline at end of file
diff --git a/Ryujinx.Common/Configuration/DlcNca.cs b/Ryujinx.Common/Configuration/DlcNca.cs
deleted file mode 100644
index df6a4532..00000000
--- a/Ryujinx.Common/Configuration/DlcNca.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-namespace Ryujinx.Common.Configuration
-{
- public struct DlcNca
- {
- public string Path { get; set; }
- public ulong TitleId { get; set; }
- public bool Enabled { get; set; }
- }
-} \ No newline at end of file
diff --git a/Ryujinx.Common/Configuration/DownloadableContentContainer.cs b/Ryujinx.Common/Configuration/DownloadableContentContainer.cs
new file mode 100644
index 00000000..b6ae2f3f
--- /dev/null
+++ b/Ryujinx.Common/Configuration/DownloadableContentContainer.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file
diff --git a/Ryujinx.Common/Configuration/DownloadableContentNca.cs b/Ryujinx.Common/Configuration/DownloadableContentNca.cs
new file mode 100644
index 00000000..80b67300
--- /dev/null
+++ b/Ryujinx.Common/Configuration/DownloadableContentNca.cs
@@ -0,0 +1,14 @@
+using System.Text.Json.Serialization;
+
+namespace Ryujinx.Common.Configuration
+{
+ public struct DownloadableContentNca
+ {
+ [JsonPropertyName("path")]
+ public string FullPath { get; set; }
+ [JsonPropertyName("title_id")]
+ public ulong TitleId { get; set; }
+ [JsonPropertyName("is_enabled")]
+ public bool Enabled { get; set; }
+ }
+} \ No newline at end of file