DownloadableContentNca.cs 387 B

1234567891011121314
  1. using System.Text.Json.Serialization;
  2. namespace Ryujinx.Common.Configuration
  3. {
  4. public struct DownloadableContentNca
  5. {
  6. [JsonPropertyName("path")]
  7. public string FullPath { get; set; }
  8. [JsonPropertyName("title_id")]
  9. public ulong TitleId { get; set; }
  10. [JsonPropertyName("is_enabled")]
  11. public bool Enabled { get; set; }
  12. }
  13. }