Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-05-06 14:47:16 +02:00
parent 55b4405c28
commit 806138def6
19 changed files with 3756 additions and 129 deletions
+8
View File
@@ -0,0 +1,8 @@
public class Workout
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
public DateTime Date { get; set; }
public int DurationMinutes { get; set; }
public string? Notes { get; set; }
}