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; }