IStunResult.cs 147 B

123456789
  1. using System.Net;
  2. namespace STUN.Interfaces
  3. {
  4. public interface IStunResult
  5. {
  6. public IPEndPoint PublicEndPoint { get; }
  7. }
  8. }