aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DefinitionResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DefinitionResponse.cs')
-rw-r--r--Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DefinitionResponse.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DefinitionResponse.cs b/Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DefinitionResponse.cs
index 5ab6cfd6d..ea09dfdef 100644
--- a/Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DefinitionResponse.cs
+++ b/Software/Visual_Studio/TCC/Tango.TCC.BL/Web/DefinitionResponse.cs
@@ -18,6 +18,8 @@ namespace Tango.TCC.BL.Web
public CardDetectionHistogramMethods HistogramMethod { get; set; }
public bool EnableDoubleChecking { get; set; }
public bool EnforceBarcodeDetection { get; set; }
+ public List<String> OrganizationMachines { get; set; }
+ public bool IsRegistered { get; set; }
public DefinitionResponse()
{
@@ -29,6 +31,7 @@ namespace Tango.TCC.BL.Web
HistogramMethod = CardDetectionHistogramMethods.Chi_Square;
EnableDoubleChecking = true;
EnforceBarcodeDetection = true;
+ OrganizationMachines = new List<string>();
}
}
}