BililiveRecorder/BililiveRecorder.Core/Danmaku/IBasicDanmakuWriter.cs

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);
}
}