8 lines
255 B
C#
8 lines
255 B
C#
|
|
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 UniversityId { get; set; }
|
|||
|
|
}
|