9 lines
122 B
C#
9 lines
122 B
C#
namespace Goals.Runtime
|
|
{
|
|
public enum GoalState
|
|
{
|
|
Pending,
|
|
InProgress,
|
|
Completed,
|
|
}
|
|
}
|