Files
moadiran/Shared/DTOs/ChangePasswordDto.cs

16 lines
327 B
C#
Raw Permalink Normal View History

2024-04-29 07:58:41 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class ChangePasswordDto
{
public string oldPass { get; set; }
public string newPass { get; set; }
public string renewPass { get; set; }
}
}