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

12 lines
97 B
C#

using System;
namespace GoldPrinter
{
public enum HAlignFlag
{
Left,
Center,
Right
}
}