11 lines
174 B
C#
11 lines
174 B
C#
|
using System;
|
||
|
|
||
|
namespace app.Model.DTOs
|
||
|
{
|
||
|
public class ResetPasswordDTO
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
public string Password { get; set; }
|
||
|
}
|
||
|
}
|