<PackageReference Include="Relativity.Transfer.Client" Version="7.1.40" />

IFileShareRestClient

using Relativity.Transfer.Dto; using System.Threading; using System.Threading.Tasks; namespace Relativity.Transfer { internal interface IFileShareRestClient { Task<TResult> RequestPostAsync<TResult, TRequest>(FileShareMessage<TRequest> message, string endpoint, CancellationToken token) where TResult : class, new; } }