Created
January 4, 2017 00:20
-
-
Save bleroy/943fed6e96f7b20df5d7cc4ed4ac532d 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
[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