Fix ACTIVE error management

Fix tool table cancel buttons
Removed deleted button in edit
This commit is contained in:
Lucio Maranta
2019-03-26 17:01:29 +01:00
parent 463e24a2d2
commit 7ed87452a4
8 changed files with 97 additions and 121 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Step.Model.Constants;
namespace Step.Model
{
@@ -10,6 +11,6 @@ namespace Step.Model
{
public string Title { get; set; }
public string Message { get; set; }
public int ErrorLevel { get; set; }
public ERROR_LEVEL ErrorLevel { get; set; }
}
}