| 1234567891011121314151617181920212223242526272829303132 |
- 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;
- }
- }
- }
|