Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

13 righe
276 B

  1. using JT808.Gateway.Abstractions.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace JT808.Gateway.Abstractions
  6. {
  7. public interface IJT808MsgConsumerFactory
  8. {
  9. IJT808MsgConsumer Create(JT808ConsumerType consumerType);
  10. }
  11. }