123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace wispro.sp.share.webViewObject
- {
- public class loginDto
- {
- [Required(ErrorMessage = "请填写Email")]
- public string Name { get; set; }
- [Required(ErrorMessage = "请填写Password")]
- public string Password { get; set; }
- }
- }
|