mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
23 lines
549 B
C#
23 lines
549 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Core
|
|
{
|
|
public delegate void DisconnectEvt(object sender, DisconnectEvtArgs e);
|
|
public class DisconnectEvtArgs
|
|
{
|
|
public Exception Error;
|
|
}
|
|
|
|
public delegate void ReceivedRoomCountEvt(object sender, ReceivedRoomCountArgs e);
|
|
public class ReceivedRoomCountArgs
|
|
{
|
|
public uint UserCount;
|
|
}
|
|
|
|
public delegate void ReceivedDanmakuEvt(object sender, ReceivedDanmakuArgs e);
|
|
public class ReceivedDanmakuArgs
|
|
{
|
|
public DanmakuModel Danmaku;
|
|
}
|
|
}
|