Ichen Chhoeng ff0e97e36b blah
2025-11-17 11:25:33 +07:00

11 lines
308 B
C#

using System.ComponentModel.DataAnnotations;
namespace khmereid_backend.Dtos;
public class VerifyOtpRequest
{
[Required] public string Phone { get; set; } = string.Empty;
[Required] public string Otp { get; set; } = string.Empty;
[Required] public string FlowId { get; set; } = string.Empty;
}