13 lines
114 B
C#
13 lines
114 B
C#
using System;
|
|
|
|
namespace GoldPrinter
|
|
{
|
|
public enum GridLineFlag
|
|
{
|
|
None,
|
|
Horizontal,
|
|
Vertical,
|
|
Both
|
|
}
|
|
}
|