mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
18 lines
358 B
C#
18 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; }
|
|||
|
}
|
|||
|
}
|