Initialize

This commit is contained in:
2025-05-10 13:31:06 -07:00
commit 631d47ddf9
19 changed files with 1288 additions and 0 deletions

View File

@ -0,0 +1,13 @@
namespace FileExposer.Models;
public interface ISyncV1Controller<T, TT>
{
static string GetRouteName() => nameof(ISyncV1Controller<T, TT>)[1..^10];
T Post();
T Put(string path, TT formFiles);
T Patch(string path, TT formFiles);
T Get(string path, long? size, long? ticks);
T Delete(string path, long size, long ticks);
}