Skip to content

Instantly share code, notes, and snippets.

@renatocantarino
Created June 19, 2013 14:34
Show Gist options
  • Save renatocantarino/5814799 to your computer and use it in GitHub Desktop.
Save renatocantarino/5814799 to your computer and use it in GitHub Desktop.
using System.Runtime.Serialization;
namespace appRest
{
[DataContract]
public class Pessoa
{
[DataMember]
public string Id { get; set; }
[DataMember]
public string Name { get; set; }
[DataMember]
public string Age { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment