created AppDetails object

#48
This commit is contained in:
Chris.Watts90@outlook.com 2017-02-27 16:47:16 +00:00
parent e4724f2d3e
commit cb6c595c8c

View File

@ -0,0 +1,11 @@
namespace Interfaces
{
public class AppDetails
{
public string ApplicationName { get; set; }
public string Version { get; set; }
public string DataBaseProvider { get; set; }
public string LoggerProvider { get; set; }
public string ErrorEmailAddress { get; set; }
}
}