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,16 @@
namespace Code.Core;
public class Sprint
{
public int SprintNumber { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public bool IsActive { get; set; } = false;
public List<UserStory> UserStories { get; set; } = new List<UserStory>();
public void MarkStoryDone(UserStory userStory)
{
var story = UserStories.First(x => x.Title == userStory.Title);
story.IsComplete = true;
}
}