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; } } }