Files
opensim/OpenSim/Framework/Client/IClientIPEndpoint.cs
2009-05-17 10:26:00 +00:00

13 lines
215 B
C#

using System;
using System.Collections.Generic;
using System.Net;
using System.Text;
namespace OpenSim.Framework.Client
{
public interface IClientIPEndpoint
{
IPAddress EndPoint { get; }
}
}