You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OptifitWebService/Server/Dto/Request/RequestExerciceDto.cs

16 lines
324 B

using System.ComponentModel.DataAnnotations;
using Shared;
namespace Server.Dto.Request
{
public class RequestExerciceDto
{
public ECategory Category { get; set; }
public int NbSets { get; set; }
public int NbReps { get; set; }
public int RestingTime { get; set; }
}
}