using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.IO; using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.IO; using MediaBrowser.Providers.Manager; using Microsoft.Extensions.Logging; namespace MediaBrowser.Providers.Photos; /// /// Service to manage photo album metadata. /// public class PhotoAlbumMetadataService : MetadataService { /// /// Initializes a new instance of the class. /// /// Instance of the . /// Instance of the interface. /// Instance of the interface. /// Instance of the interface. /// Instance of the interface. /// Instance of the interface. public PhotoAlbumMetadataService( IServerConfigurationManager serverConfigurationManager, ILogger logger, IProviderManager providerManager, IFileSystem fileSystem, ILibraryManager libraryManager, IExternalDataManager externalDataManager) : base(serverConfigurationManager, logger, providerManager, fileSystem, libraryManager, externalDataManager) { } }