style(PepLib.Core): normalize enum value alignment

Remove extra spacing used for column alignment in enum value
declarations to follow standard C# formatting conventions.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
AJ
2026-01-14 07:52:34 -05:00
parent 7c5b4ded5f
commit 1358f0136b
3 changed files with 11 additions and 11 deletions

View File

@@ -3,13 +3,13 @@ namespace PepLib
{
public enum ApplicationType
{
None = 0x0,
Laser = 0x1,
Flame = 0x2,
Punch = 0x3,
None = 0x0,
Laser = 0x1,
Flame = 0x2,
Punch = 0x3,
PlasmaPunch = 0x4,
Waterjet = 0x6,
LaserPunch = 0x7,
Waterjet = 0x6,
LaserPunch = 0x7,
FlamePlasma = 0x9
}
}

View File

@@ -3,10 +3,10 @@ namespace PepLib
{
public enum DrawingType
{
None = 0x20,
None = 0x20,
Drawing = 0x44,
Product = 0x50,
Rotary = 0x52,
Tool = 0x54
Rotary = 0x52,
Tool = 0x54
}
}

View File

@@ -3,8 +3,8 @@ namespace PepLib
{
public enum GrainType
{
No = 0x0,
Yes = 0x1,
No = 0x0,
Yes = 0x1,
Soft = 0x2,
Hard = 0x3
}