RPCCheck2FACommand.cs 438 B

1234567891011121314151617181920212223
  1. using InABox.Core;
  2. namespace InABox.IPC
  3. {
  4. public class RPCCheck2FACommand : IRPCCommand<RPCCheck2FAParameters, RPCCheck2FAResponse> { }
  5. public class RPCCheck2FAParameters : ISerializeBinary
  6. {
  7. public void SerializeBinary(CoreBinaryWriter writer)
  8. {
  9. }
  10. public void DeserializeBinary(CoreBinaryReader reader)
  11. {
  12. }
  13. }
  14. public class RPCCheck2FAResponse
  15. {
  16. }
  17. }