14 lines
289 B
C#
14 lines
289 B
C#
|
|
using Common.Enums;
|
|
|
|
namespace Common.Dtos.Verification
|
|
{
|
|
public class ConfirmedCodeDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string code { get; set; }
|
|
public VerificationCodeType codeType { get; set; }
|
|
public string? value { get; set; }
|
|
}
|
|
}
|