Person.pb.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. // Generated from: Person.proto
  10. namespace Person
  11. {
  12. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"Person")]
  13. public partial class Person : global::ProtoBuf.IExtensible
  14. {
  15. public Person() {}
  16. private int _guid;
  17. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"guid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  18. public int guid
  19. {
  20. get { return _guid; }
  21. set { _guid = value; }
  22. }
  23. private global::ProtoBuf.IExtension extensionObject;
  24. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  25. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  26. }
  27. }