Created
July 6, 2018 22:40
-
-
Save joebuschmann/e50d1679ea8406dacac84eaaa8752795 to your computer and use it in GitHub Desktop.
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
public class Address | |
{ | |
[TableAliases("Street")] | |
public string Line1 { get; set; } | |
[TableAliases("Township", "Village")] | |
public string City { get; set; } | |
[TableAliases("Province")] | |
public string State { get; set; } | |
[TableAliases("Zip", "Zip\\s*Code", "Postal\\s*Code")] | |
public string Zipcode { get; set; } | |
public GeoLocation Location { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment