wxw
8 小时以前 fef4a39d606932ebb2f7ae7d58c8ddcdd3e3b9db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
 
namespace Model.ModelVm
{
    public class LoginVm
    {
        /// <summary>
        /// 登录名
        /// </summary>
        [Required]
        [StringLength(50, MinimumLength = 3)]
        public string LoginName { get; set; }
        /// <summary>
        /// 登录密码
        /// </summary>
        [Required]
        public string LoginPwd { get; set; }
    }
}