Last active
November 25, 2019 11:33
-
-
Save icebeam7/b61f03b0518ef0fd58432677aadd9c8e to your computer and use it in GitHub Desktop.
DemoDS: LocationAddress.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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