mirror of
https://github.com/opensim/opensim.git
synced 2026-07-13 19:14:51 +08:00
13 lines
215 B
C#
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; }
|
|
}
|
|
}
|