Api-PWA/DocuMed.Domain/Dtos/SmallDtos/SectionSDto.cs

8 lines
253 B
C#
Raw Normal View History

2023-10-22 15:51:11 +03:30
namespace DocuMed.Domain.Dtos.SmallDtos;
public class SectionSDto : BaseDto<SectionSDto,Section>
{
public string Name { get; set; } = string.Empty;
public string Detail { get; set; } = string.Empty;
2024-09-28 12:34:36 +03:30
public Guid HospitalId { get; set; }
2023-10-22 15:51:11 +03:30
}