22 lines
718 B
C#
22 lines
718 B
C#
using HRD.AppLogger;
|
|
using System;
|
|
|
|
namespace HRD.WebApi.DAL.Middleware
|
|
{
|
|
public class WebApiMiddlewareOptions
|
|
{
|
|
public string AssemblyVersion { get; set; } = String.Empty;
|
|
public string AssemblyName { get; set; } = String.Empty;
|
|
public string ClientVersion { get; set; }
|
|
|
|
public string Connectionstring { get; set; } = String.Empty;
|
|
|
|
//Logger
|
|
public string NlogLogDirectory { get; set; } = String.Empty;
|
|
|
|
public string NlogConnectionstring { get; set; } = String.Empty;
|
|
|
|
public EN_LoggingLevel NlogFileLogLevel { get; set; } = EN_LoggingLevel.Error;
|
|
public EN_LoggingLevel NlogDBLogLevel { get; set; } = EN_LoggingLevel.Error;
|
|
}
|
|
} |