9 lines
285 B
C#
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);
|
|
|
|
} |