mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
14 lines
329 B
C#
14 lines
329 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using BililiveRecorder.Core.Api.Danmaku;
|
|
|
|
namespace BililiveRecorder.Core.Danmaku
|
|
{
|
|
internal interface IBasicDanmakuWriter : IDisposable
|
|
{
|
|
void Disable();
|
|
void EnableWithPath(string path, IRoom room);
|
|
Task WriteAsync(DanmakuModel danmakuModel);
|
|
}
|
|
}
|