2023-06-23 15:40:59 -07:00

9 lines
285 B
C#

namespace Barcode.Host.Shared.Models.Stateless;
public interface IPostService
{
HttpResponseMessage Post(string postTo, HttpClient httpClient, Notification notification);
Task<HttpResponseMessage> PostAsync(string postTo, HttpClient httpClient, Notification notification);
}