1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-20 11:25:44 -05:00

14 lines
387 B
C#
Raw Normal View History

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; }
}
}