2024-07-06 21:20:10 +03:30
|
|
|
|
using Brizco.Domain.Entities.Routines;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
2023-11-14 16:21:49 +03:30
|
|
|
|
|
|
|
|
|
|
public class RoutineSDto : BaseDto<RoutineSDto,Routine>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; internal set; } = string.Empty;
|
|
|
|
|
|
public string Description { get; internal set; } = string.Empty;
|
|
|
|
|
|
}
|