10 lines
216 B
C#
10 lines
216 B
C#
namespace GymLogAI.Application.DTOs;
|
|
|
|
public sealed record ParsedExerciseSetDto(
|
|
int Order,
|
|
int? Repetitions,
|
|
decimal? WeightKg,
|
|
int? DurationSeconds,
|
|
decimal? DistanceMeters,
|
|
string? Notes);
|