using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Transport.Web; namespace Tango.TCC.BL.Web { public class DefinitionResponse : WebResponseMessage { public String TemplateString { get; set; } public int SampleWidth { get; set; } public int SampleHeight { get; set; } public int CameraWidth { get; set; } public int CameraHeight { get; set; } public double SimilarityTolerance { get; set; } public CardDetectionHistogramMethods HistogramMethod { get; set; } public bool EnableDoubleChecking { get; set; } public bool EnforceBarcodeDetection { get; set; } public List OrganizationMachines { get; set; } public bool IsRegistered { get; set; } public DefinitionResponse() { SampleWidth = 300; SampleHeight = 330; CameraWidth = 1280; CameraHeight = 720; SimilarityTolerance = 50; HistogramMethod = CardDetectionHistogramMethods.Chi_Square; EnableDoubleChecking = true; EnforceBarcodeDetection = true; OrganizationMachines = new List(); } } }