Added fields to maintenances model and config

This commit is contained in:
Lucio Maranta
2018-06-05 16:26:08 +02:00
parent 801e422345
commit 83cf50ecab
18 changed files with 163 additions and 29 deletions
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
{
public class ToolTableConfigModel
{
public bool FamilyOption;
public bool MultiToolOption;
public bool MagazinePosition;
}
}