Files
Lab/theInterfacePro/Code/Core/UserStory.cs
Boban 4a7ddacae4
All checks were successful
Log every push / log-push (push) Successful in 2s
initial design of domain
2026-06-07 22:09:45 +02:00

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;}
}