2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
15 lines
380 B
C#
15 lines
380 B
C#
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; }
|
|
}
|
|
}
|