blob: ac7fdcd04ad258435e2044fc741a2f0b4153fdda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
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; }
}
}
|