9 lines
334 B
C#
9 lines
334 B
C#
namespace DocuMed.Domain.Dtos.SmallDtos;
|
|
|
|
public class HospitalSDto : BaseDto<HospitalSDto,Hospital>
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Detail { get; set; } = string.Empty;
|
|
public string Address { get; set; } = string.Empty;
|
|
public string UniversityName { get; set; } = string.Empty;
|
|
} |