using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.HyperPrinterHandler { internal class ReceiptColumnItem { //text will print on receipt public string Text { get; set; } public int colspan { get; set; } /// /// alignment /// public string align { get; set; } public int width { get; set; } public ReceiptColumnItem() { Text = String.Empty; colspan = 0; align = "left"; width = 0; } } }