| using System;using InABox.Core;namespace InABox.Rpc{    public class RpcClientSession : IRpcSession    {        public Guid ID { get; set; }        public Platform Platform { get; set; }        public string? Version { get; set; }        public string UserID { get; set; }        public Guid UserGuid { get; set; }    }}
 |