14 lines
208 B
C#
14 lines
208 B
C#
using System;
|
|
|
|
namespace SharedDatabase.Output.Printers
|
|
{
|
|
public enum BarcodeType
|
|
{
|
|
None,
|
|
Code_128_Horizontally,
|
|
Code_128_Vertically,
|
|
QR_Code,
|
|
Count
|
|
}
|
|
}
|