Try your search with a different keyword or use * as a wildcard.
namespace Nop.Services.Installation.SampleData;
public partial class SampleAddress
{
///
/// Gets or sets the state/province identifier
///
public string StateProvince { 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 zip/postal code
///
public string ZipPostalCode { get; set; }
///
/// Three-letter country ISO code
///
public string CountryThreeLetterIsoCode { get; set; }
///
/// Gets or sets the company
///
public string Company { get; set; }
///
/// Gets or sets the phone number
///
public string PhoneNumber { get; set; }
///
/// 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 fax number
///
public string FaxNumber { get; set; } = string.Empty;
///
/// Gets or sets the address 2
///
public string Address2 { get; set; }
}