namespace Robust.Client.ViewVariables { /// /// A session allowing the client to read & write on an object on the server. /// public sealed class ViewVariablesRemoteSession { internal uint SessionId { get; } public bool Closed { get; internal set; } internal ViewVariablesRemoteSession(uint sessionId) { SessionId = sessionId; } } }