Changing accessability on some properties

This commit is contained in:
K35 2022-01-11 08:44:05 +00:00
parent 491e1ac052
commit f90bd11508
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@hibas123/jrpcgen", "name": "@hibas123/jrpcgen",
"version": "1.0.20", "version": "1.0.21",
"main": "lib/index.js", "main": "lib/index.js",
"license": "MIT", "license": "MIT",
"packageManager": "yarn@3.1.1", "packageManager": "yarn@3.1.1",

View File

@ -29,9 +29,9 @@ public class JRpcServer<TContext>
public class JRpcServerSession<TContext> public class JRpcServerSession<TContext>
{ {
JRpcServer<TContext> Server; public JRpcServer<TContext> Server { get; private set; }
JRpcTransport Transport; public JRpcTransport Transport { get; private set; }
TContext Context; public TContext Context { get; private set; }
public JRpcServerSession(JRpcServer<TContext> server, JRpcTransport transport, TContext context) public JRpcServerSession(JRpcServer<TContext> server, JRpcTransport transport, TContext context)
{ {