blob: d59bd313e9db2e77c84ba86072ba4f49163373cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using System.Collections.Generic;
using System.Net;
using System.Text;
namespace OpenSim.Framework.Client
{
public interface IClientIPEndpoint
{
IPAddress EndPoint { get; }
}
}
|