Files
cms_thermo_active/Step.Model/ConfigModels/AreasConfigModel.cs
T
Lucio Maranta c4b9dd1b26 + Added Nc Needed in the Areas configuration API
+ Added signalR notification when nc is disconnected
2018-01-25 11:07:48 +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; }
}
}