add architecture skeleton

This commit is contained in:
2026-04-19 13:12:04 +03:00
parent 312708531f
commit 2738f31f26
84 changed files with 2710 additions and 70 deletions
+15
View File
@@ -0,0 +1,15 @@
namespace GymLogAI.Core.Entities;
public class ExerciseSet
{
public Guid Id { get; set; }
public Guid WorkoutExerciseId { get; set; }
public int Order { get; set; }
public decimal? WeightKg { get; set; }
public int? Repetitions { get; set; }
public int? DurationSeconds { get; set; }
public decimal? DistanceMeters { get; set; }
public string? Notes { get; set; }
public WorkoutExercise? WorkoutExercise { get; set; }
}