Skip to content

Instantly share code, notes, and snippets.

@udooz
Created May 9, 2013 22:41
Show Gist options
  • Save udooz/5551157 to your computer and use it in GitHub Desktop.
Save udooz/5551157 to your computer and use it in GitHub Desktop.
public class ProfileDetails
{
[DataMember]
public string FirstName
{
get;
set;
}
[DataMember]
public string LastName
{
get;
set;
}
[DataMember]
public string PostalCode
{
get;
set;
}
[DataMember]
public string AdressLine1
{
get;
set;
}
[DataMember]
public string AdressLine2
{
get;
set;
}
[DataMember]
public string City
{
get;
set;
}
[DataMember]
public string State
{
get;
set;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment