| 123456789101112131415161718192021222324252627282930 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- // Generated from: Person.proto
- namespace Person
- {
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"Person")]
- public partial class Person : global::ProtoBuf.IExtensible
- {
- public Person() {}
-
- private int _guid;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"guid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int guid
- {
- get { return _guid; }
- set { _guid = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
- }
|