using System; using System.Collections.Generic; namespace MediaBrowser.Model.System; /// /// Contains informations about a libraries storage informations. /// public class LibraryStorageInfo { /// /// Gets or sets the Library Id. /// public required Guid Id { get; set; } /// /// Gets or sets the name of the library. /// public required string Name { get; set; } /// /// Gets or sets the storage informations about the folders used in a library. /// public required IReadOnlyCollection Folders { get; set; } }