DlcModel.cs 502 B

123456789101112131415161718
  1. namespace Ryujinx.Ava.Ui.Models
  2. {
  3. public class DlcModel
  4. {
  5. public bool IsEnabled { get; set; }
  6. public string TitleId { get; }
  7. public string ContainerPath { get; }
  8. public string FullPath { get; }
  9. public DlcModel(string titleId, string containerPath, string fullPath, bool isEnabled)
  10. {
  11. TitleId = titleId;
  12. ContainerPath = containerPath;
  13. FullPath = fullPath;
  14. IsEnabled = isEnabled;
  15. }
  16. }
  17. }