// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Model.System; using global::System; using global::System.Collections.Generic; /// /// 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; } }