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