15 lines
450 B
C#
15 lines
450 B
C#
namespace C969Project.Data.Models;
|
|
|
|
public class Address
|
|
{
|
|
public int Id { get; set; }
|
|
public string Address1 {get; set;}
|
|
public string Address2 {get; set;}
|
|
public int CityId {get; set;}
|
|
public string PostalCode {get; set;}
|
|
public string Phone {get; set;}
|
|
public DateTime CreateDate {get; set;}
|
|
public string CreatedBy {get; set;}
|
|
public DateTime LastUpdate {get; set;}
|
|
public string LastUpdateBy {get; set;}
|
|
} |