13 lines
159 B
C#
13 lines
159 B
C#
using System;
|
|
|
|
namespace ShowGridNumber
|
|
{
|
|
public enum CalcGridInfoResult
|
|
{
|
|
eSucceded,
|
|
eError,
|
|
eMin,
|
|
eIdling
|
|
}
|
|
}
|