You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
673 B
32 lines
673 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace QM.Assist
|
||
|
{
|
||
|
public class LabelInfo
|
||
|
{
|
||
|
private System.Data.DataTable labelData = null;
|
||
|
private string barCode = "";
|
||
|
public string BarCode
|
||
|
{
|
||
|
get { return barCode; }
|
||
|
set { barCode = value; }
|
||
|
}
|
||
|
public System.Data.DataTable LabelData
|
||
|
{
|
||
|
get { return labelData; }
|
||
|
set { labelData = value; }
|
||
|
}
|
||
|
private string printerName = "";
|
||
|
|
||
|
public string PrinterName
|
||
|
{
|
||
|
get { return printerName; }
|
||
|
set { printerName = value; }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|