| 12345678910111213141516171819 |
- using System.ComponentModel;
- namespace Net6Demo_Api.Entity
- {
- public class LoginInput
- {
- /// <summary>
- /// 账号
- /// </summary>
- [DefaultValue("")]
- public string usercode { get; set; } = "";
- /// <summary>
- /// 密码
- /// </summary>
- [DefaultValue("")]
- public string password { get; set; } = "";
- }
- }
|