3fbacd0f49
* Fixes Everything Part.2 * Change sorting, fix remove and heading
32 lines
No EOL
784 B
C#
32 lines
No EOL
784 B
C#
using Ryujinx.Ava.Ui.ViewModels;
|
|
|
|
namespace Ryujinx.Ava.Ui.Models
|
|
{
|
|
public class DownloadableContentModel : BaseModel
|
|
{
|
|
private bool _enabled;
|
|
|
|
public bool Enabled
|
|
{
|
|
get => _enabled;
|
|
set
|
|
{
|
|
_enabled = value;
|
|
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
} |