namespace ZhiYi.Core.Application.Dtos { public class UserCreationDto { /// /// 用户名 /// public string UserName { get;set; } /// /// 密码 /// public string PassWord { get; set; } } }