mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 06:27:15 +00:00
28 lines
605 B
C#
28 lines
605 B
C#
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; }
|
|
}
|
|
}
|