export interface SetExerciseIdDto {
    exerciseId: string;
    configId?: string;
    metadata?: {
        [key: string]: string | number | boolean;
    };
}
