COmpilazione progetto Iob.Net con apertura UI ext+varie

This commit is contained in:
Samuele E. Locatelli
2020-09-26 16:44:51 +02:00
parent 9dae728914
commit e302e8b852
30 changed files with 1278 additions and 70 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static SteamWare.Logger.Constants;
namespace Iob.Model
{
public class ErrorMessageModel
{
#region Public Properties
public ERROR_LEVEL ErrorLevel { get; set; }
public string Message { get; set; }
public string Title { get; set; }
#endregion Public Properties
}
}