namespace CoreConnect.Commerce.Customer;
/// Id to identify Address
public string? Id { set; get; }
/// Gets or sets the first name associated with the address.
public string? FirstName { get; set; }
/// Gets or sets the last name associated with the address.
public string? LastName { get; set; }
/// Gets or sets the company name associated with the address.
public string? Company { get; set; }
/// Gets or sets the first line of the address.
public string? Address1 { get; set; }
/// Gets or sets the second line of the address (if applicable).
public string? Address2 { get; set; }
/// Gets or Sets HouseNumber
public string? HouseNumber { get; set; }
/// Customer's Salutation
public string? Salutation { get; set; }
/// Gets or sets the city associated with the address.
public string? City { get; set; }
/// Gets or sets the country code of the address (e.g., ISO 3166-1 alpha-2 code).
public string? CountryCode { get; set; }
/// Gets or sets the postal code (ZIP code) associated with the address.
public string? PostalCode { get; set; }
/// Gets or sets the state or province associated with the address.
public string? StateOrProvince { get; set; }
/// Gets or sets the phone number associated with the address.
public string? Phone { get; set; }
/// Gets or sets the street number (if applicable).
public string? StreetNumber { get; set; }
/// Gets or sets the street name (if applicable).
public string? StreetName { get; set; }
/// Gets or sets additional street information (if applicable).
public string? AdditionalStreetInfo { get; set; }