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,17 @@
using System.Text.Json.Serialization;
namespace CFCoreAPI.Endpoints.Files.Responses
{
public struct StringResponse
{
[JsonConstructor]
public StringResponse(
string data
)
{
this.Data = data;
}
public string Data { get; }
}
}