aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.BL/Entities/Card.cs
blob: e4abca4369bee6b1a893b26616fb13c3c70cc507 (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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.TCC.BL.Entities
{
    [Table("CARDS")]
    public class Card : TCCEntityBase
    {
        [Column("CODE")]
        public String Code { get; set; }

        [Column("COLUMNS")]
        public int Columns { get; set; }

        [Column("ROWS")]
        public int Rows { get; set; }

        [Column("TARGET_INDEX")]
        public int TargetIndex { get; set; }

        [Column("VERSION")]
        public double Version { get; set; }

        [Column("BATCH")]
        public double Batch { get; set; }

        [Column("HOME_PRINTED")]
        public bool IsHomePrinted { get; set; }
    }
}