16 lines
361 B
C#
16 lines
361 B
C#
|
using ProtoBuf;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
[Message(ushort.MaxValue)]
|
||
|
[ProtoContract]
|
||
|
public partial class ActorResponse: ProtoObject, IActorResponse
|
||
|
{
|
||
|
[ProtoMember(1)]
|
||
|
public int RpcId { get; set; }
|
||
|
[ProtoMember(2)]
|
||
|
public int Error { get; set; }
|
||
|
[ProtoMember(3)]
|
||
|
public string Message { get; set; }
|
||
|
}
|
||
|
}
|