Files
CourseWork_GradeBook_Backend/GradeBookServer.Application/DTOs/User/VerifyCodeDto.cs

15 lines
334 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GradeBookServer.Application.DTOs.User
{
public class VerifyCodeDto
{
public string SessionId { get; set; } = string.Empty;
public string Code { get; set; } = string.Empty;
}
}