begin developing a basic message based web api

This commit is contained in:
Pilzinsel64
2024-08-14 14:59:05 +02:00
parent 1932443a20
commit 02a6c3bf6a
9 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace Pilz.Networking.Api;
public interface IApiClient
{
void MakeRequest<T>(string url, T message) where T : ApiMessage;
}