| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LanTian_Pump_664_Or_886.MessageEntity.Incoming
- {
- public class PresetAmountResponse : MessageBase
- {
- /*from the doc, no body bytes*/
- public override string ToLogString()
- {
- return this.GetType().Name + base.ToLogString();
- }
- }
- }
|