diff options
author | Ac_K <Acoustik666@gmail.com> | 2022-07-29 00:41:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-29 00:41:34 +0200 |
commit | 46c8129bf57a3df3e0a2db27e6611ca4210614be (patch) | |
tree | 94bc946a119fb1a48f554536a4cc7e25bed45620 /Ryujinx.Common/Configuration/DownloadableContentContainer.cs | |
parent | 8cfec5de4bde7087734beb2f7203f0d930e1b2d8 (diff) |
Avalonia: Another Cleanup (#3494)1.1.197
* Avalonia: Another Cleanup
This PR is a cleanup to the avalonia code recently added:
- Some XAML file are autoformatted like a previous PR.
- Dlc is renamed to DownloadableContent (Locale exclude).
- DownloadableContentManagerWindow is a bit improved (Fixes #3491).
- Some nits here and there.
* Fix GTK
* Remove AttachDebugDevTools
* Fix last warning
* Fix JSON fields
Diffstat (limited to 'Ryujinx.Common/Configuration/DownloadableContentContainer.cs')
-rw-r--r-- | Ryujinx.Common/Configuration/DownloadableContentContainer.cs | 13 |
1 files changed, 13 insertions, 0 deletions
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 |