14 lines
309 B
C#
14 lines
309 B
C#
namespace Code;
|
|
|
|
public class UserStory
|
|
{
|
|
public string Title {get; set;}
|
|
public string Requirement {get; set;}
|
|
public int StoryPoints {get; set;}
|
|
public string FitnesseTestTitle {get; set;}
|
|
public List<string> EventsInOrder { get; set; }
|
|
|
|
public bool IsComplete {get; set;}
|
|
|
|
}
|