10 lines
218 B
C#
10 lines
218 B
C#
namespace Apimanager_backend.Dtos
|
|
{
|
|
public class ResetPasswordDto
|
|
{
|
|
public string Email { get; set; }
|
|
public string NewPassword { get; set; }
|
|
public string Code { get; set; }
|
|
}
|
|
}
|