1234567891011121314151617181920212223 |
- using InABox.Core;
- namespace InABox.IPC
- {
- public class RPCCheck2FACommand : IRPCCommand<RPCCheck2FAParameters, RPCCheck2FAResponse> { }
-
- public class RPCCheck2FAParameters : ISerializeBinary
- {
- public void SerializeBinary(CoreBinaryWriter writer)
- {
- }
- public void DeserializeBinary(CoreBinaryReader reader)
- {
- }
- }
-
- public class RPCCheck2FAResponse
- {
- }
- }
|