We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 776aff7 commit ee10e7eCopy full SHA for ee10e7e
MutagenSdk/MutagenClient.cs
@@ -8,7 +8,7 @@ public class MutagenClient : IDisposable
8
{
9
private readonly GrpcChannel _channel;
10
11
- public Synchronization.SynchronizationClient Client { get; }
+ public readonly Synchronization.SynchronizationClient Synchronization;
12
13
public MutagenClient(string dataDir)
14
@@ -44,7 +44,7 @@ public MutagenClient(string dataDir)
44
Credentials = ChannelCredentials.Insecure,
45
HttpHandler = socketsHttpHandler,
46
});
47
- Client = new Synchronization.SynchronizationClient(_channel);
+ Synchronization = new Synchronization.SynchronizationClient(_channel);
48
}
49
50
public void Dispose()
0 commit comments