StunResult5389.cs 588 B

12345678910111213141516
  1. using STUN.Enums;
  2. using System.Net;
  3. using ReactiveUI;
  4. namespace STUN.StunResult
  5. {
  6. public class StunResult5389 : ReactiveObject
  7. {
  8. public IPEndPoint PublicEndPoint { get; set; }
  9. public IPEndPoint LocalEndPoint { get; set; }
  10. public IPEndPoint OtherEndPoint { get; set; }
  11. public BindingTestResult BindingTestResult { get; set; } = BindingTestResult.Unknown;
  12. public MappingBehavior MappingBehavior { get; set; } = MappingBehavior.Unknown;
  13. public FilteringBehavior FilteringBehavior { get; set; } = FilteringBehavior.Unknown;
  14. }
  15. }