20 lines
606 B
C#
20 lines
606 B
C#
using System;
|
|
|
|
namespace COA.EnterpriseServices.DataAccess.Entities
|
|
{
|
|
public class Client : IRecord
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime Created { get; set; } = DateTime.Now;
|
|
public DateTime Modified { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string Email { get; set; }
|
|
public long Phone { get; set; }
|
|
public string Address { get; set; }
|
|
public string City { get; set; }
|
|
public string State { get; set; }
|
|
public string Zip { get; set; }
|
|
}
|
|
}
|