Enable StyleCop for MediaBrowser.Common

This commit is contained in:
Bond-009
2020-06-03 13:04:45 +02:00
parent 40502a33e0
commit f404e915ee
11 changed files with 94 additions and 70 deletions

View File

@@ -0,0 +1,15 @@
namespace MediaBrowser.Common.Configuration
{
/// <summary>
/// A configuration store that can be validated.
/// </summary>
public interface IValidatingConfiguration
{
/// <summary>
/// Validation method to be invoked before saving the configuration.
/// </summary>
/// <param name="oldConfig">The old configuration.</param>
/// <param name="newConfig">The new configuration.</param>
void Validate(object oldConfig, object newConfig);
}
}