aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs')
-rw-r--r--src/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs b/src/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs
deleted file mode 100644
index 9e400441..00000000
--- a/src/Ryujinx.Ava/UI/Models/DownloadableContentModel.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using Ryujinx.Ava.UI.ViewModels;
-using System.IO;
-
-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 string FileName => Path.GetFileName(ContainerPath);
-
- public DownloadableContentModel(string titleId, string containerPath, string fullPath, bool enabled)
- {
- TitleId = titleId;
- ContainerPath = containerPath;
- FullPath = fullPath;
- Enabled = enabled;
- }
- }
-}