BililiveRecorder/BililiveRecorder.Core/Events.cs

15 lines
369 B
C#
Raw Normal View History

namespace BililiveRecorder.Core
2018-03-13 14:23:53 +08:00
{
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
2018-03-13 14:23:53 +08:00
{
2018-03-21 20:56:56 +08:00
public TriggerType type;
2018-03-13 14:23:53 +08:00
}
}