Skip to content

Commit c70c244

Browse files
authored
(#99) Make service client public. (#104)
1 parent 9c4370b commit c70c244

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CommunityToolkit.Datasync.Client/Service/DatasyncServiceClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace CommunityToolkit.Datasync.Client;
2222
/// for HTTP datasync services.
2323
/// </summary>
2424
/// <typeparam name="TEntity">The type of entity being processed by this service client.</typeparam>
25-
internal class DatasyncServiceClient<TEntity> : IDatasyncServiceClient<TEntity> where TEntity : class
25+
public class DatasyncServiceClient<TEntity> : IDatasyncServiceClient<TEntity> where TEntity : class
2626
{
2727
/// <summary>
2828
/// Creates a new <see cref="DatasyncServiceClient{TEntity}"/> using default information based on

0 commit comments

Comments
 (0)