11 lines
94 B
C#
11 lines
94 B
C#
using System;
|
|
|
|
namespace GoldPrinter
|
|
{
|
|
public enum SewingDirectionFlag
|
|
{
|
|
Left,
|
|
Top
|
|
}
|
|
}
|