mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 17:32:23 +00:00
13 lines
292 B
C#
13 lines
292 B
C#
|
using FSO.Common.Security;
|
|||
|
using FSO.Server.Framework.Aries;
|
|||
|
|
|||
|
namespace FSO.Server.Framework.Gluon
|
|||
|
{
|
|||
|
public interface IGluonSession : IAriesSession, ISecurityContext
|
|||
|
{
|
|||
|
string CallSign { get; }
|
|||
|
string PublicHost { get; }
|
|||
|
string InternalHost { get; }
|
|||
|
}
|
|||
|
}
|