mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 09:42:57 +01:00
17 lines
358 B
C#
17 lines
358 B
C#
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; }
|
|
}
|
|
}
|