basic sub-client implementation

This commit is contained in:
Pilzinsel64
2024-12-12 07:25:18 +01:00
parent 4bdeaadbcb
commit 2b0b094731
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace Pilz.Net.Api;
public interface IApiSubClient
{
internal protected static abstract T? CreateClient<T>(IApiClient client) where T : IApiSubClient;
}