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;
public Guid HospitalId { get; set; }
}