2
0

LibraryStorageInfo.cs 666 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.System;
  4. /// <summary>
  5. /// Contains informations about a libraries storage informations.
  6. /// </summary>
  7. public class LibraryStorageInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the Library Id.
  11. /// </summary>
  12. public required Guid Id { get; set; }
  13. /// <summary>
  14. /// Gets or sets the name of the library.
  15. /// </summary>
  16. public required string Name { get; set; }
  17. /// <summary>
  18. /// Gets or sets the storage informations about the folders used in a library.
  19. /// </summary>
  20. public required IReadOnlyCollection<FolderStorageInfo> Folders { get; set; }
  21. }