19 lines
447 B
C#
19 lines
447 B
C#
![]() |
using Common.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Common.Dtos.Identity
|
|||
|
{
|
|||
|
public class VerificationDto
|
|||
|
{
|
|||
|
public string UserId { get; set; }
|
|||
|
public VerificationCodeType Type { get; set; }
|
|||
|
public string Code { get; set; }
|
|||
|
public string ToMobile { get; set; }
|
|||
|
public string? Token { get; set; }
|
|||
|
}
|
|||
|
}
|