mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 19:18:32 +00:00
18 lines
562 B
C#
18 lines
562 B
C#
|
namespace Ryujinx.Ava.Ui.Models
|
|||
|
{
|
|||
|
public class DownloadableContentModel
|
|||
|
{
|
|||
|
public bool Enabled { get; set; }
|
|||
|
public string TitleId { get; }
|
|||
|
public string ContainerPath { get; }
|
|||
|
public string FullPath { get; }
|
|||
|
|
|||
|
public DownloadableContentModel(string titleId, string containerPath, string fullPath, bool enabled)
|
|||
|
{
|
|||
|
TitleId = titleId;
|
|||
|
ContainerPath = containerPath;
|
|||
|
FullPath = fullPath;
|
|||
|
Enabled = enabled;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|