Files
cms_thermo_active/Step.Model/ConfigModels/AreasConfigModel.cs
T
Lucio Maranta d1cc7d5b8c Revert "erge"
This reverts commit 79276ad3eb.
2018-01-25 12:54:15 +01:00

17 lines
385 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.ConfigModels
{
public class AreasConfigModel
{
public string Name { get; set; }
public bool Enabled { get; set; }
public bool AllowExternalBrowser { get; set; }
public bool NcNeeded { get; set; }
}
}