initial design of domain
All checks were successful
Log every push / log-push (push) Successful in 2s

This commit is contained in:
Boban
2026-06-07 22:09:45 +02:00
parent 2af87e8268
commit 4a7ddacae4
393 changed files with 16395 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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;}
}