DlcContainer.cs 217 B

12345678910
  1. using System.Collections.Generic;
  2. namespace Ryujinx.Common.Configuration
  3. {
  4. public struct DlcContainer
  5. {
  6. public string Path { get; set; }
  7. public List<DlcNca> DlcNcaList { get; set; }
  8. }
  9. }