moved connection string to the app config

This commit is contained in:
2019-01-25 23:04:47 +01:00
parent 6630496029
commit 8d04684c95
5 changed files with 9 additions and 6 deletions

View File

@@ -3,9 +3,8 @@ using Tv7Playlist.Core;
namespace Tv7Playlist
{
public class AppConfig : IAppConfig
internal class AppConfig : IAppConfig
{
private string _tv7Url;
private string _udpxyUrl;
@@ -34,5 +33,7 @@ namespace Tv7Playlist
}
public string DownloadFileName { get; set; }
public string SqLiteConnectionString { get; set; }
}
}