11 lines
308 B
C#
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;
|
|
}
|