12 lines
322 B
C#
12 lines
322 B
C#
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; }
|
|
}
|
|
}
|