PresetAmountResponse.cs 411 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LanTian_Pump_664_Or_886.MessageEntity.Incoming
  7. {
  8. public class PresetAmountResponse : MessageBase
  9. {
  10. /*from the doc, no body bytes*/
  11. public override string ToLogString()
  12. {
  13. return this.GetType().Name + base.ToLogString();
  14. }
  15. }
  16. }