jellyfin/MediaBrowser.Common/Configuration/IConfigurationFactory.cs

25 lines
505 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2018-12-28 00:27:57 +01:00
using System.Collections.Generic;
namespace MediaBrowser.Common.Configuration
{
public interface IConfigurationFactory
{
IEnumerable<ConfigurationStore> GetConfigurations();
}
public class ConfigurationStore
{
public string Key { get; set; }
public Type ConfigurationType { get; set; }
}
public interface IValidatingConfiguration
{
void Validate(object oldConfig, object newConfig);
}
}