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