Last active
July 6, 2018 13:26
-
-
Save joebuschmann/1c12785b58e305ee3c97e9b3c51c7235 to your computer and use it in GitHub Desktop.
This file contains hidden or 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", "Municipality")] | |
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; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment