Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Last active November 25, 2019 11:33
Show Gist options
  • Save icebeam7/b61f03b0518ef0fd58432677aadd9c8e to your computer and use it in GitHub Desktop.
Save icebeam7/b61f03b0518ef0fd58432677aadd9c8e to your computer and use it in GitHub Desktop.
DemoDS: LocationAddress.cs
namespace DemoDS.Models
{
public class LocationAddress
{
public string Name { get; set; }
public string Address { get; set; }
public string Province { get; set; }
public string City { get; set; }
public string ZipCode { get; set; }
public string Country { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment