Added new settings management

This commit is contained in:
Andre Beging
2019-01-06 15:31:09 +01:00
parent b891327b35
commit bc1a0e2118
3 changed files with 102 additions and 4 deletions

15
Data/EJaySettings.cs Normal file
View File

@@ -0,0 +1,15 @@
namespace DebtMgr.Data
{
public class EJaySettings
{
public string Database { get; set; }
public string TelegramPath { get; set; }
public EJaySettings()
{
Database = string.Empty;
TelegramPath = string.Empty;
}
}
}