using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media.Imaging; using Tango.PMR.TCC; namespace Tango.TCC.BL { public class CardDetectionResult { public bool IsDetected { get; set; } public BitmapSource Source { get; set; } public BitmapSource DetectedBitmap { get; set; } public DetectionOutput ColorDetectionOutput { get; set; } public double Similarity { get; set; } public String Barcode { get; set; } } }