9 lines
179 B
C#
9 lines
179 B
C#
namespace Marco.Pms.Model.Dtos.Authentication
|
|
{
|
|
public class VerifyOTPDto
|
|
{
|
|
public string? Email { get; set; }
|
|
public string? OTP { get; set; }
|
|
}
|
|
}
|