using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.ShowEasyDtos { public class MemberDTO { /// /// /// public string MemberID { get; set; } /// /// /// public string MemberPicture { get; set; } /// /// /// public string FirstName { get; set; } /// /// /// public string LastName { get; set; } /// /// /// public string Title { get; set; } /// /// /// public string MemberType { get; set; } /// /// /// public string Account { get; set; } /// /// /// public string Password { get; set; } /// /// /// public string Email { get; set; } /// /// /// public string Phone { get; set; } /// /// /// public string CountryID { get; set; } /// /// ArgumentID /// public string LanguageID { get; set; } /// /// /// public DateTime? BirthDate { get; set; } /// /// /// public string Status { get; set; } /// /// /// public string OrgID { get; set; } /// /// /// public string Subscribe { get; set; } /// /// /// public string PhoneCode { get; set; } /// /// /// public string CountryName { get; set; } /// /// /// public string Country_ENCode { get; set; } } }