Move UserStoryState to MotivationalExample
This commit is contained in:
@@ -30,6 +30,11 @@ namespace StatePattern.ScrumExample
|
|||||||
public UserStoryState State { get; set; }
|
public UserStoryState State { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public enum UserStoryState
|
||||||
|
{
|
||||||
|
New = 0, Active = 1, Resolved = 2, Closed = 3, Removed = 4
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// User story states: New, Active, Resolved, Closed, Removed
|
/// User story states: New, Active, Resolved, Closed, Removed
|
||||||
/// Actions on user stories:
|
/// Actions on user stories:
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace StatePattern.ScrumExample
|
|
||||||
{
|
|
||||||
public enum UserStoryState
|
|
||||||
{
|
|
||||||
New = 0, Active = 1, Resolved = 2, Closed = 3, Removed = 4
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user