RpcReleaseNotesParameters.cs 485 B

12345678910111213141516171819202122
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace InABox.Rpc
  6. {
  7. public class RpcReleaseNotesParameters : IRpcCommandParameters
  8. {
  9. public void SerializeBinary(CoreBinaryWriter writer)
  10. {
  11. }
  12. public void DeserializeBinary(CoreBinaryReader reader)
  13. {
  14. }
  15. public string? FullDescription() => "ReleaseNotes";
  16. public string? ShortDescription() => FullDescription();
  17. }
  18. }