using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace bnhtrade.Core.Model.Account { public class Contact { public int ContactId { get; set; } public string ContantName { get; set; } public string ContactEbayName { get; set; } public string ContactEbayEmail { get; set; } public string ContactPaypalName { get; set; } public string ContactPaypalEmail { get; set; } public DateTime Created { get; set; } public DateTime? Modified { get; set; } } }