15 lines
250 B
C#
15 lines
250 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Squirrowse.Client.Service
|
|||
|
{
|
|||
|
public interface IStreamService
|
|||
|
{
|
|||
|
Task SendStreamAsync(IAsyncEnumerable<byte[]> asb);
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|