c969-project/C969Project/Data/Models/Address.cs
2025-06-14 19:29:58 -05:00

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;}
}