Added API endpoints classes for all CFCore web API endpoints.

A few have not been implemented.
This commit is contained in:
2022-05-20 16:36:27 -05:00
parent 2b9bd4dc26
commit e4d4134ef2
9 changed files with 371 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
namespace CFCoreAPI.Endpoints.Mods
{
public class ModsAPI : APIBase
{
public ModsAPI(HttpClient httpClient) : base(httpClient)
{
throw new System.NotImplementedException();
}
}
}