13 lines
184 B
C#
13 lines
184 B
C#
|
|
namespace PepLib
|
|
{
|
|
public enum DrawingType
|
|
{
|
|
None = 0x20,
|
|
Drawing = 0x44,
|
|
Product = 0x50,
|
|
Rotary = 0x52,
|
|
Tool = 0x54
|
|
}
|
|
}
|