added playlist loader

registered appconfig as singleton
added config interfaces
This commit is contained in:
2018-12-29 00:38:20 +01:00
parent f37d8d49ea
commit 590c73f834
11 changed files with 128 additions and 26 deletions

View File

@@ -0,0 +1,13 @@
namespace Tv7Playlist.Core
{
public interface IAppConfig
{
string TV7Url { get; set; }
SourceTypeEnum SourceType { get; set; }
string UdpxyUrl { get; set; }
string DownloadFileName { get; set; }
}
}