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

15 lines
136 B
C#

using System;
namespace GoldPrinter
{
public enum GridMergeFlag
{
None,
Row,
Col,
ColDependOnBeforeGroup,
Both,
Any
}
}