mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
15 lines
365 B
C#
15 lines
365 B
C#
#pragma warning disable CS1591
|
|
|
|
using Emby.Dlna.Configuration;
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
namespace Emby.Dlna
|
|
{
|
|
public static class ConfigurationExtension
|
|
{
|
|
public static DlnaOptions GetDlnaConfiguration(this IConfigurationManager manager)
|
|
{
|
|
return manager.GetConfiguration<DlnaOptions>("dlna");
|
|
}
|
|
}
|
|
}
|