From d235bc8211134980e4c6da1c43c31987d77e14df Mon Sep 17 00:00:00 2001 From: "ashutosh.nehete" Date: Sat, 7 Jun 2025 15:28:37 +0530 Subject: [PATCH] Changed varable name in VerifyOTPDto --- Marco.Pms.Model/Dtos/Authentication/VerifyOTPDto.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marco.Pms.Model/Dtos/Authentication/VerifyOTPDto.cs b/Marco.Pms.Model/Dtos/Authentication/VerifyOTPDto.cs index 1e40f5f..4a0a70f 100644 --- a/Marco.Pms.Model/Dtos/Authentication/VerifyOTPDto.cs +++ b/Marco.Pms.Model/Dtos/Authentication/VerifyOTPDto.cs @@ -3,6 +3,6 @@ public class VerifyOTPDto { public string? Email { get; set; } - public string? OPT { get; set; } + public string? OTP { get; set; } } }