2024-06-27 16:02:41 +02:00

14 lines
527 B
C#

using DigitalData.Core.Abstractions.Client;
using Microsoft.Extensions.Options;
using System.Net;
namespace DigitalData.Core.Client
{
public class HttpClientService<TClientOptions> : BaseHttpClientService, IHttpClientService<TClientOptions>, IBaseHttpClientService
where TClientOptions : HttpClientOptions
{
public HttpClientService(HttpClient client, CookieContainer cookieContainer, IOptions<TClientOptions> clientOptions) : base(client, cookieContainer, clientOptions)
{
}
}
}