Server create container&element

This commit is contained in:
2023-07-26 08:12:53 +02:00
parent 40cb643a32
commit e70bc3643a
20 changed files with 483 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace FileTime.Server.Common.Connections.SignalR;
public interface ISignalRHub
{
Task Exit();
Task CreateContainerAsync(string contentProviderId, string fullName);
Task CreateElementAsync(string contentProviderId, string fullName);
}