Files
tv7playlist/Tv7Playlist.Core/IAppConfig.cs

15 lines
298 B
C#

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