TlvFactory.cs 231 B

12345678
  1. namespace TLVProtocal;
  2. public class TlvFactory
  3. {
  4. public static ITlvCommunicatorClient GetTlvClient() => new TlvCommunicatorClient();
  5. public static ITlvCommunicatorServer GetTlvServer() => new TlvCommunicatorServer();
  6. }