aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.Service/DTO/ResultDTO.cs
blob: d0f7b4a4e814a0d3dc254630f96ac720a0cd132a (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 ResultDTO
    {
        public int ID { get; set; }

        public DateTime Date { get; set; }
        
        public String DeviceGuid { get; set; }

        public String CardGuid { get; set; }
        
        public int RawColor { get; set; }
        
        public int ProcessedColor { get; set; }
        
        public int ProcessTime { get; set; }

        public String SampleImageURL { get; set; }
        
        public String SourceImageURL { get; set; }

        public DeviceDTO Device { get; set; }

        public CardDTO Card { get; set; }

        public String DeviceModel { get; set; }

        public String CardCode { get; set; }

        public String Email { get; set; }
    }
}