mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 00:35:26 +03:00
Add GPL modules
This commit is contained in:
22
MediaBrowser.Common/Configuration/IConfigurationFactory.cs
Normal file
22
MediaBrowser.Common/Configuration/IConfigurationFactory.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user