Skip to content

Commit ee10e7e

Browse files
committed
Rename MutagenClient.Client to Synchronization
1 parent 776aff7 commit ee10e7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MutagenSdk/MutagenClient.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class MutagenClient : IDisposable
88
{
99
private readonly GrpcChannel _channel;
1010

11-
public Synchronization.SynchronizationClient Client { get; }
11+
public readonly Synchronization.SynchronizationClient Synchronization;
1212

1313
public MutagenClient(string dataDir)
1414
{
@@ -44,7 +44,7 @@ public MutagenClient(string dataDir)
4444
Credentials = ChannelCredentials.Insecure,
4545
HttpHandler = socketsHttpHandler,
4646
});
47-
Client = new Synchronization.SynchronizationClient(_channel);
47+
Synchronization = new Synchronization.SynchronizationClient(_channel);
4848
}
4949

5050
public void Dispose()

0 commit comments

Comments
 (0)