2
0

RequestSuccessEventArgs.cs 168 B

123456789
  1. using System;
  2. namespace Renci.SshClient
  3. {
  4. internal class RequestSuccessEventArgs : EventArgs
  5. {
  6. public uint BoundPort { get; set; }
  7. }
  8. }