file-exposer/Models/ISyncV1Repository.cs
2025-05-10 13:31:06 -07:00

15 lines
351 B
C#

using System;
using System.IO;
namespace FileExposer.Models;
public interface ISyncV1Repository
{
string Post(Stream stream);
Get Get(string path, long? size, long? ticks);
void Delete(string path, long size, long ticks);
void Put(string path, string data, Stream stream);
void Patch(string path, string data, Stream stream);
}