diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs | 296 |
1 files changed, 296 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs b/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs index 08e8d7337..6543ce97b 100644 --- a/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs +++ b/Software/Visual_Studio/Tango.BL/DTO/JobRunDTOBase.cs @@ -421,5 +421,301 @@ namespace Tango.BL.DTO get; set; } + /// <summary> + /// tw transparent ink quantity + /// </summary> + public Int64 TwTransparentInkQuantity + { + get; set; + } + + /// <summary> + /// c1 ti quantity + /// </summary> + public Int64 C1TiQuantity + { + get; set; + } + + /// <summary> + /// tw cyan quantity + /// </summary> + public Int64 TwCyanQuantity + { + get; set; + } + + /// <summary> + /// tw light cyan quantity + /// </summary> + public Int64 TwLightCyanQuantity + { + get; set; + } + + /// <summary> + /// tw magenta quantity + /// </summary> + public Int64 TwMagentaQuantity + { + get; set; + } + + /// <summary> + /// tw light magenta quantity + /// </summary> + public Int64 TwLightMagentaQuantity + { + get; set; + } + + /// <summary> + /// tw yellow quantity + /// </summary> + public Int64 TwYellowQuantity + { + get; set; + } + + /// <summary> + /// tw light yellow quantity + /// </summary> + public Int64 TwLightYellowQuantity + { + get; set; + } + + /// <summary> + /// c1 yellow quantity + /// </summary> + public Int64 C1YellowQuantity + { + get; set; + } + + /// <summary> + /// c1 light yellow quantity + /// </summary> + public Int64 C1LightYellowQuantity + { + get; set; + } + + /// <summary> + /// tw black quantity + /// </summary> + public Int64 TwBlackQuantity + { + get; set; + } + + /// <summary> + /// tw violet quantity + /// </summary> + public Int64 TwVioletQuantity + { + get; set; + } + + /// <summary> + /// tw light violet quantity + /// </summary> + public Int64 TwLightVioletQuantity + { + get; set; + } + + /// <summary> + /// ct blue quantity + /// </summary> + public Int64 CtBlueQuantity + { + get; set; + } + + /// <summary> + /// ct light blue quantity + /// </summary> + public Int64 CtLightBlueQuantity + { + get; set; + } + + /// <summary> + /// ct rubine quantity + /// </summary> + public Int64 CtRubineQuantity + { + get; set; + } + + /// <summary> + /// ct light rubine quantity + /// </summary> + public Int64 CtLightRubineQuantity + { + get; set; + } + + /// <summary> + /// ct orange quantity + /// </summary> + public Int64 CtOrangeQuantity + { + get; set; + } + + /// <summary> + /// ct light orange quantity + /// </summary> + public Int64 CtLightOrangeQuantity + { + get; set; + } + + /// <summary> + /// ct navy quantity + /// </summary> + public Int64 CtNavyQuantity + { + get; set; + } + + /// <summary> + /// hd blue quantity + /// </summary> + public Int64 HdBlueQuantity + { + get; set; + } + + /// <summary> + /// hd light blue quantity + /// </summary> + public Int64 HdLightBlueQuantity + { + get; set; + } + + /// <summary> + /// hd rubine quantity + /// </summary> + public Int64 HdRubineQuantity + { + get; set; + } + + /// <summary> + /// hd light rubine quantity + /// </summary> + public Int64 HdLightRubineQuantity + { + get; set; + } + + /// <summary> + /// hd orange quantity + /// </summary> + public Int64 HdOrangeQuantity + { + get; set; + } + + /// <summary> + /// hd light orange quantity + /// </summary> + public Int64 HdLightOrangeQuantity + { + get; set; + } + + /// <summary> + /// hd navy quantity + /// </summary> + public Int64 HdNavyQuantity + { + get; set; + } + + /// <summary> + /// hd light navy quantity + /// </summary> + public Int64 HdLightNavyQuantity + { + get; set; + } + + /// <summary> + /// am blue quantity + /// </summary> + public Int64 AmBlueQuantity + { + get; set; + } + + /// <summary> + /// am light blue quantity + /// </summary> + public Int64 AmLightBlueQuantity + { + get; set; + } + + /// <summary> + /// am red quantity + /// </summary> + public Int64 AmRedQuantity + { + get; set; + } + + /// <summary> + /// am light red quantity + /// </summary> + public Int64 AmLightRedQuantity + { + get; set; + } + + /// <summary> + /// am orange quantity + /// </summary> + public Int64 AmOrangeQuantity + { + get; set; + } + + /// <summary> + /// am light orange quantity + /// </summary> + public Int64 AmLightOrangeQuantity + { + get; set; + } + + /// <summary> + /// am yellow quantity + /// </summary> + public Int64 AmYellowQuantity + { + get; set; + } + + /// <summary> + /// am light yellow quantity + /// </summary> + public Int64 AmLightYellowQuantity + { + get; set; + } + + /// <summary> + /// am black quantity + /// </summary> + public Int64 AmBlackQuantity + { + get; set; + } + } } |
