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