13 lines
No EOL
212 B
C#
13 lines
No EOL
212 B
C#
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Communication
|
|
{
|
|
[ProtoContract]
|
|
public enum RpcResponseType
|
|
{
|
|
UNKNOWN_ERROR,
|
|
SUCCESS,
|
|
GENERIC_SERVER_ERROR,
|
|
MAINTENANCE_MODE
|
|
}
|
|
} |