using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Tango.TCC.Service.DTO { public class CardDTO { public String CardGuid { get; set; } public String CardCode { get; set; } public int Columns { get; set; } public int Rows { get; set; } public int TargetIndex { get; set; } public double Version { get; set; } public double Batch { get; set; } public bool IsHomePrinted { get; set; } public int SampleWidth { get; set; } public int SampleHeight { get; set; } public bool EnableDoubleChecking { get; set; } public bool EnforceBarcodeDetection { get; set; } public String PDFPath { get; set; } public DateTime Date { get; set; } } }