mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
17 lines
435 B
C#
17 lines
435 B
C#
namespace Robust.Client.ViewVariables
|
|
{
|
|
/// <summary>
|
|
/// A session allowing the client to read & write on an object on the server.
|
|
/// </summary>
|
|
public sealed class ViewVariablesRemoteSession
|
|
{
|
|
internal uint SessionId { get; }
|
|
public bool Closed { get; internal set; }
|
|
|
|
internal ViewVariablesRemoteSession(uint sessionId)
|
|
{
|
|
SessionId = sessionId;
|
|
}
|
|
}
|
|
}
|