using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Fw.Utility.UnifyResponse; using RestSharp; namespace Hotline.Api.Sdk { public partial interface IHotlineClient { Task> ExecuteAsync(string path, Method httpMethod, TRequest request, CancellationToken cancellationToken) where TRequest : class; Task ExecuteAsync(string path, Method httpMethod, TRequest request, CancellationToken cancellationToken) where TRequest : class; } }