10 lines
217 B
C#
10 lines
217 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Ryujinx.Common.Configuration
|
|||
|
{
|
|||
|
public struct DlcContainer
|
|||
|
{
|
|||
|
public string Path { get; set; }
|
|||
|
public List<DlcNca> DlcNcaList { get; set; }
|
|||
|
}
|
|||
|
}
|