blob: c056ac1e812b00bf3da523048248f7247faa301b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.Generic;
namespace Ryujinx.Common.Configuration
{
public struct DlcContainer
{
public string Path { get; set; }
public List<DlcNca> DlcNcaList { get; set; }
}
}
|