blob: 81d44367197a3d713812164ccc2f9a124ad83e09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using Google.Protobuf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Transport.Web
{
public interface ITransportWebClient : IDisposable
{
Task<Response> Post<Request, Response>(String url, Request request) where Request : class, IMessage where Response : class, IMessage;
}
}
|