DlcNca.cs 214 B

123456789
  1. namespace Ryujinx.Common.Configuration
  2. {
  3. public struct DlcNca
  4. {
  5. public string Path { get; set; }
  6. public ulong TitleId { get; set; }
  7. public bool Enabled { get; set; }
  8. }
  9. }