//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.GameLogic;
///
/// Interface for objects that expose a remote IP address.
///
public interface IHasIpAddress
{
///
/// Gets the IP address of the remote connection.
///
string? IpAddress { get; }
}