mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
15 lines
369 B
C#
15 lines
369 B
C#
namespace BililiveRecorder.Core
|
|
{
|
|
public delegate void RoomInfoUpdatedEvent(object sender, RoomInfoUpdatedArgs e);
|
|
public class RoomInfoUpdatedArgs
|
|
{
|
|
public RoomInfo RoomInfo;
|
|
}
|
|
|
|
public delegate void StreamStartedEvent(object sender, StreamStartedArgs e);
|
|
public class StreamStartedArgs
|
|
{
|
|
public TriggerType type;
|
|
}
|
|
}
|