af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
// <copyright file="ConfigurationUpdateEventArgs.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Common.Configuration
|
|
{
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// <see cref="EventArgs" /> for the ConfigurationUpdated event.
|
|
/// </summary>
|
|
public class ConfigurationUpdateEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ConfigurationUpdateEventArgs"/> class.
|
|
/// </summary>
|
|
/// <param name="key">The configuration key.</param>
|
|
/// <param name="newConfiguration">The new configuration.</param>
|
|
public ConfigurationUpdateEventArgs(string key, object newConfiguration)
|
|
{
|
|
Key = key;
|
|
NewConfiguration = newConfiguration;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the key.
|
|
/// </summary>
|
|
/// <value>The key.</value>
|
|
public string Key { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the new configuration.
|
|
/// </summary>
|
|
/// <value>The new configuration.</value>
|
|
public object NewConfiguration { get; }
|
|
}
|
|
}
|