using System;
using MediaBrowser.Model.Configuration;
namespace MediaBrowser.Controller.Entities;
///
/// Event arguments for when library options are updated.
///
public class LibraryOptionsUpdatedEventArgs : EventArgs
{
///
/// Initializes a new instance of the class.
///
/// The path of the library whose options were updated.
/// The updated library options.
public LibraryOptionsUpdatedEventArgs(string libraryPath, LibraryOptions libraryOptions)
{
LibraryPath = libraryPath;
LibraryOptions = libraryOptions;
}
///
/// Gets the path of the library whose options were updated.
///
public string LibraryPath { get; }
///
/// Gets the updated library options.
///
public LibraryOptions LibraryOptions { get; }
}