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

18 lines
396 B
C#

using Common.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos.User
{
public class ConfirmedCodeDto
{
public int Id { get; set; }
public string code { get; set; }
public VerificationCodeType codeType { get; set; }
public string? value { get; set; }
}
}