Skip to content

Instantly share code, notes, and snippets.

@MRdNk
Last active July 6, 2020 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MRdNk/6d2fb3515f6700e2ded72159a7220cc5 to your computer and use it in GitHub Desktop.
Save MRdNk/6d2fb3515f6700e2ded72159a7220cc5 to your computer and use it in GitHub Desktop.
// Address: Before
public class Address {
public Guid Id { get; set; }
public string Line1 { get; set; }
public string Line2 { get; set; }
public string Line3 { get; set; }
public string City { get; set; }
public string Postcode { get;set; }
public int CountryId { get; set; }
}
// Address: After
public class Address {
public Guid Id { get; set; }
public string Line1 { get; set; }
public string Line2 { get; set; }
public string Line3 { get; set; }
public string City { get; set; }
public string Postcode { get;set; }
public string CountryIso { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment