2022-12-27 17:33:33 +08:00

13 lines
114 B
C#

using System;
namespace GoldPrinter
{
public enum GridLineFlag
{
None,
Horizontal,
Vertical,
Both
}
}