Files
Hushian/Presentation/HushianWebApp/Data/Dtos/Identity/VerificationDto.cs
mmrbnjd ff342a53c0 ...
2025-07-11 20:37:28 +03:30

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