31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
namespace ESCPOS_NET.Emitters
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.SpacingRules", "SA1025:Code should not contain multiple whitespace in a row", Justification = "Enums are easier to read if they have whitespace alignment.")]
|
|
public enum TwoDimensionCodeType
|
|
{
|
|
PDF417 = 0,
|
|
QRCODE_MODEL1 = 49,
|
|
QRCODE_MODEL2 = 50,
|
|
QRCODE_MICRO = 51,
|
|
}
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.SpacingRules", "SA1025:Code should not contain multiple whitespace in a row", Justification = "Enums are easier to read if they have whitespace alignment.")]
|
|
public enum Size2DCode
|
|
{
|
|
TINY = 2,
|
|
SMALL = 3,
|
|
NORMAL = 4,
|
|
LARGE = 5,
|
|
EXTRA = 6,
|
|
}
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.SpacingRules", "SA1025:Code should not contain multiple whitespace in a row", Justification = "Enums are easier to read if they have whitespace alignment.")]
|
|
public enum CorrectionLevel2DCode
|
|
{
|
|
PERCENT_7 = 48,
|
|
PERCENT_15 = 49,
|
|
PERCENT_25 = 50,
|
|
PERCENT_30 = 51,
|
|
}
|
|
}
|