Skip to content

Commit

Permalink
(#99) Make service client public. (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianhall authored Sep 12, 2024
1 parent 9c4370b commit c70c244
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace CommunityToolkit.Datasync.Client;
/// for HTTP datasync services.
/// </summary>
/// <typeparam name="TEntity">The type of entity being processed by this service client.</typeparam>
internal class DatasyncServiceClient<TEntity> : IDatasyncServiceClient<TEntity> where TEntity : class
public class DatasyncServiceClient<TEntity> : IDatasyncServiceClient<TEntity> where TEntity : class
{
/// <summary>
/// Creates a new <see cref="DatasyncServiceClient{TEntity}"/> using default information based on
Expand Down

0 comments on commit c70c244

Please sign in to comment.