22 lines
630 B
C#
22 lines
630 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.eShopOnContainers.WebMVC.Models
|
|
{
|
|
public class Address
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Street { get; set; }
|
|
public string City { get; set; }
|
|
public string State { get; set; }
|
|
public string StateCode { get; set; }
|
|
public string Country { get; set; }
|
|
public string CountryCode { get; set; }
|
|
public string ZipCode { get; set; }
|
|
public double Latitude { get; set; }
|
|
public double Longitude { get; set; }
|
|
}
|
|
}
|