11 lines
277 B
C#
11 lines
277 B
C#
namespace Thermo.Active.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; }
|
|
}
|
|
}
|