10 lines
201 B
C#
10 lines
201 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace squirrowse.web.Data
|
|
{
|
|
public interface ISaveVideo
|
|
{
|
|
Task SaveData(IAsyncEnumerable<byte[]> stream);
|
|
}
|
|
} |