Files
moadiran/Shared/DTOs/VerificationCodeDto.cs

16 lines
316 B
C#
Raw Normal View History

2024-04-14 16:09:36 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class VerificationCodeDto
{
public string prm { get; set; }
public string val { get; set; }
public string Type { get; set; }
}
}