/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ namespace CoreCms.Net.Model.FromBody { /// /// 用户登录验证实体 /// public class FMLogin { public string userName { get; set; } public string password { get; set; } } /// /// 用户登录验证实体 /// public class FMEditLoginUserPassWord { public string oldPassword { get; set; } public string password { get; set; } public string repassword { get; set; } } }