Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

Address.cs

namespace Nop.Core.Domain.Common;

/// 
/// Address
/// 
public partial class Address : BaseEntity
{
    /// 
    /// Gets or sets the first name
    /// 
    public string FirstName { get; set; }

    /// 
    /// Gets or sets the last name
    /// 
    public string LastName { get; set; }

    /// 
    /// Gets or sets the email
    /// 
    public string Email { get; set; }

    /// 
    /// Gets or sets the company
    /// 
    public string Company { get; set; }

    /// 
    /// Gets or sets the country identifier
    /// 
    public int? CountryId { get; set; }

    /// 
    /// Gets or sets the state/province identifier
    /// 
    public int? StateProvinceId { get; set; }

    /// 
    /// Gets or sets the county
    /// 
    public string County { get; set; }

    /// 
    /// Gets or sets the city
    /// 
    public string City { get; set; }

    /// 
    /// Gets or sets the address 1
    /// 
    public string Address1 { get; set; }

    /// 
    /// Gets or sets the address 2
    /// 
    public string Address2 { get; set; }

    /// 
    /// Gets or sets the zip/postal code
    /// 
    public string ZipPostalCode { get; set; }

    /// 
    /// Gets or sets the phone number
    /// 
    public string PhoneNumber { get; set; }

    /// 
    /// Gets or sets the fax number
    /// 
    public string FaxNumber { get; set; }

    /// 
    /// Gets or sets the custom attributes (see "AddressAttribute" entity for more info)
    /// 
    public string CustomAttributes { get; set; }

    /// 
    /// Gets or sets the date and time of instance creation
    /// 
    public DateTime CreatedOnUtc { get; set; }
}