DownloadableContentModel.cs 562 B

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