Added configurations

This commit is contained in:
Nicola Carminati
2019-03-22 16:57:38 +01:00
parent 461a083ded
commit c519d82f1b
24 changed files with 321 additions and 146 deletions
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
{
public class SoftwareProdConfigModel
{
public bool Enabled { get; set; }
public string Path { get; set; }
}
}