SystemStorageInfo.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.System;
  3. /// <summary>
  4. /// Contains informations about the systems storage.
  5. /// </summary>
  6. public class SystemStorageInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the program data path.
  10. /// </summary>
  11. /// <value>The program data path.</value>
  12. public required FolderStorageInfo ProgramDataFolder { get; set; }
  13. /// <summary>
  14. /// Gets or sets the web UI resources path.
  15. /// </summary>
  16. /// <value>The web UI resources path.</value>
  17. public required FolderStorageInfo WebFolder { get; set; }
  18. /// <summary>
  19. /// Gets or sets the items by name path.
  20. /// </summary>
  21. /// <value>The items by name path.</value>
  22. public required FolderStorageInfo ImageCacheFolder { get; set; }
  23. /// <summary>
  24. /// Gets or sets the cache path.
  25. /// </summary>
  26. /// <value>The cache path.</value>
  27. public required FolderStorageInfo CacheFolder { get; set; }
  28. /// <summary>
  29. /// Gets or sets the log path.
  30. /// </summary>
  31. /// <value>The log path.</value>
  32. public required FolderStorageInfo LogFolder { get; set; }
  33. /// <summary>
  34. /// Gets or sets the internal metadata path.
  35. /// </summary>
  36. /// <value>The internal metadata path.</value>
  37. public required FolderStorageInfo InternalMetadataFolder { get; set; }
  38. /// <summary>
  39. /// Gets or sets the transcode path.
  40. /// </summary>
  41. /// <value>The transcode path.</value>
  42. public required FolderStorageInfo TranscodingTempFolder { get; set; }
  43. /// <summary>
  44. /// Gets or sets the storage informations of all libraries.
  45. /// </summary>
  46. public required IReadOnlyCollection<LibraryStorageInfo> Libraries { get; set; }
  47. }