7 lines
234 B
C#
7 lines
234 B
C#
|
|
namespace Brizco.Domain.Dtos.SmallDtos;
|
|||
|
|
|
|||
|
|
public class RoutineSDto : BaseDto<RoutineSDto,Routine>
|
|||
|
|
{
|
|||
|
|
public string Name { get; internal set; } = string.Empty;
|
|||
|
|
public string Description { get; internal set; } = string.Empty;
|
|||
|
|
}
|