BililiveRecorder/BililiveRecorder.Core/IBasicDanmakuWriter.cs

12 lines
234 B
C#
Raw Normal View History

2020-11-23 17:35:42 +08:00
using System;
namespace BililiveRecorder.Core
{
public interface IBasicDanmakuWriter : IDisposable
{
void Disable();
void EnableWithPath(string path);
void Write(DanmakuModel danmakuModel);
}
}