34 lines
661 B
C#
34 lines
661 B
C#
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace IOB_MAN.Core
|
|
{
|
|
public class CoreEnum
|
|
{
|
|
#region Public Fields
|
|
|
|
public const int SW_SHOWMAXIMIZED = 3;
|
|
|
|
public const int SW_SHOWMINIMIZED = 2;
|
|
|
|
public const int SW_SHOWNORMAL = 1;
|
|
|
|
#endregion Public Fields
|
|
|
|
#region Public Enums
|
|
|
|
/// <summary>
|
|
/// Livello log da impostare su IOB
|
|
/// </summary>
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public enum LogLevelIob
|
|
{
|
|
Warn,
|
|
Info,
|
|
Debug,
|
|
Trace
|
|
}
|
|
|
|
#endregion Public Enums
|
|
}
|
|
} |