11 lines
219 B
C#
11 lines
219 B
C#
using FileService.Application.StorageContracts;
|
|
|
|
namespace FileService.Application.Ports
|
|
{
|
|
public interface ILocalChunkStorage
|
|
{
|
|
Task SavePartAsync(
|
|
SaveLocalPartCommand command);
|
|
}
|
|
}
|