mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 18:16:38 +00:00
18 lines
502 B
C#
18 lines
502 B
C#
|
namespace Ryujinx.Ava.Ui.Models
|
|||
|
{
|
|||
|
public class DlcModel
|
|||
|
{
|
|||
|
public bool IsEnabled { get; set; }
|
|||
|
public string TitleId { get; }
|
|||
|
public string ContainerPath { get; }
|
|||
|
public string FullPath { get; }
|
|||
|
|
|||
|
public DlcModel(string titleId, string containerPath, string fullPath, bool isEnabled)
|
|||
|
{
|
|||
|
TitleId = titleId;
|
|||
|
ContainerPath = containerPath;
|
|||
|
FullPath = fullPath;
|
|||
|
IsEnabled = isEnabled;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|