Skip to content

Instantly share code, notes, and snippets.

@bleroy
Created January 4, 2017 00:20
Show Gist options
  • Save bleroy/943fed6e96f7b20df5d7cc4ed4ac532d to your computer and use it in GitHub Desktop.
Save bleroy/943fed6e96f7b20df5d7cc4ed4ac532d to your computer and use it in GitHub Desktop.
[ProtoContract]
class Person {
[ProtoMember(1)]
public int Id {get;set;}
[ProtoMember(2)]
public string Name {get;set;}
[ProtoMember(3)]
public Address Address {get;set;}
}
[ProtoContract]
class Address {
[ProtoMember(1)]
public string Line1 {get;set;}
[ProtoMember(2)]
public string Line2 {get;set;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment