mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 06:27:15 +00:00
Migrated projects to dotnet8
migrated all projects over to .net8 incomplete feature for gui shipments
This commit is contained in:
27
src/bnhtrade.Core/Model/Account/Contact.cs
Normal file
27
src/bnhtrade.Core/Model/Account/Contact.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user