Files
tv7playlist/Tv7Playlist.Core/IAppConfig.cs
Philipp Häfelfinger 590c73f834 added playlist loader
registered appconfig as singleton
added config interfaces
2018-12-29 00:38:20 +01:00

13 lines
245 B
C#

namespace Tv7Playlist.Core
{
public interface IAppConfig
{
string TV7Url { get; set; }
SourceTypeEnum SourceType { get; set; }
string UdpxyUrl { get; set; }
string DownloadFileName { get; set; }
}
}