namespace CMSMicroservice.Application.UserCQ.Commands.VerifyOtpToken; public class VerifyOtpTokenResponseDto { //موفق؟ public bool Success { get; set; } //پیام public string Message { get; set; } //توکن public string? Token { get; set; } //تلاش باقی مانده public int RemainingAttempts { get; set; } //ثانیه باقی مانده public int RemainingSeconds { get; set; } }