implement FileTransfer and UserService modules with WebRTC support

This commit is contained in:
2026-05-03 11:25:59 +02:00
parent 3166c6e647
commit d236afb1de
5 changed files with 196 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.Threading.Tasks;
namespace Chtn.CSharp.SDK.Interfaces
{
public interface IFileWriterAPI
{
Task OpenFile(string transferId, string fileName, long totalSize);
Task WriteChunk(string transferId, byte[] data);
void CloseFile(string transferId);
}
}