aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/Ui/Models/DownloadableContentModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Ava/Ui/Models/DownloadableContentModel.cs')
-rw-r--r--Ryujinx.Ava/Ui/Models/DownloadableContentModel.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/Ryujinx.Ava/Ui/Models/DownloadableContentModel.cs b/Ryujinx.Ava/Ui/Models/DownloadableContentModel.cs
deleted file mode 100644
index 5f3ca031..00000000
--- a/Ryujinx.Ava/Ui/Models/DownloadableContentModel.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-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;
- }
- }
-} \ No newline at end of file