2023-10-19 21:28:09 +03:30
|
|
|
|
namespace DocuMed.Domain.Dtos.SmallDtos;
|
|
|
|
|
|
|
|
|
|
|
|
public class UniversitySDto : BaseDto<UniversitySDto,University>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
public string Address { get; set; } = string.Empty;
|
2023-10-20 19:40:23 +03:30
|
|
|
|
public Guid CityId { get; set; }
|
2023-10-19 21:28:09 +03:30
|
|
|
|
}
|