Files
juipnet/Host/Models/UpdatePwdModel.cs
“wanyongkang” b562aba2b1 忽略dll文件git
2023-07-29 10:19:42 +08:00

15 lines
312 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Home.Models
{
public class UpdatePwdModel
{
public string OldPwd { get; set; }
public string NewPwd { get; set; }
public string ConfirmPwd { get; set; }
}
}