IpAddress.cs 238 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace HPSocketCS
  6. {
  7. public class EndPoint
  8. {
  9. public string Address { get; set; }
  10. public ushort Port { get; set; }
  11. }
  12. }