This commit is contained in:
he
2023-01-11 14:52:52 +08:00
parent 6a7a5cc2dd
commit f1a70bb6ad
9 changed files with 195 additions and 5 deletions
@@ -194,7 +194,24 @@ namespace IRaCIS.Core.Application.Contracts
}
public class VerifyEmialGetDoctorInfoInDto
{
public string VerificationCode { get; set; }
public string EmailOrPhone { get; set; }
}
public class VerifyEmialGetDoctorInfoOutDto
{
public Guid? DoctorId { get; set; }
public string Token { get; set; }
}
public class SendEmialVerifyCodeInDto
{
public string Email { get; set; } = string.Empty;
}
public class SiteSurveySendVerifyCode
{