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,19 @@
using System.Text.Json.Serialization;
namespace CFCoreAPI.Endpoints.Files.Requests
{
public class ModFilesRequest
{
[JsonConstructor]
public ModFilesRequest(
List<int> modIds
)
{
this.ModIds = modIds;
}
public IReadOnlyList<int> ModIds { get; }
}
}