You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
451 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GBNewEnergy.Protocol.Response
  5. {
  6. public class NELoginDownStream : NEBodies
  7. {
  8. protected NELoginDownStream(byte[] buffer) : base(buffer)
  9. {
  10. }
  11. protected NELoginDownStream(string vin) : base(vin)
  12. {
  13. }
  14. public override void ToBuffer()
  15. {
  16. throw new NotImplementedException();
  17. }
  18. }
  19. }