using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.ShowEasyDtos { public class TestUser { /// /// 賬號 /// public string Account { get; set; } /// /// 密碼 /// public string Password { get; set; } } }