mirror of
https://github.com/StarBeat/JsonRpc.git
synced 2026-03-08 03:55:29 +08:00
16 lines
233 B
C#
16 lines
233 B
C#
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
namespace JsonRPC.Protocol
|
|
{
|
|
public enum EJsonRPCVersion
|
|
{
|
|
[EnumMember(Value = "1.0")]
|
|
Version1 = 1,
|
|
|
|
[EnumMember(Value = "2.0")]
|
|
Version2 = 2
|
|
}
|
|
}
|