// // Copyright (c) PlaceholderCompany. All rights reserved. // #nullable disable #pragma warning disable CS1591 using MediaBrowser.Model.Configuration; namespace MediaBrowser.Controller.Persistence; public interface ILibraryOptionsRepository { LibraryOptions GetLibraryOptions(string libraryPath); void SaveLibraryOptions(string libraryPath, LibraryOptions options); }