11 lines
158 B
C#
11 lines
158 B
C#
namespace GreadyPoang.EntityLayer;
|
|
|
|
public enum GamePointStatus
|
|
{
|
|
New = 0,
|
|
InProgress = 1,
|
|
Completed = 2,
|
|
Cancelled = 3,
|
|
Winning = 4
|
|
}
|