mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
34ba4ded08
Added StreamStarted and StreamEnded Close #269
15 lines
335 B
C#
15 lines
335 B
C#
using BililiveRecorder.Core.SimpleWebhook;
|
|
|
|
namespace BililiveRecorder.Core.Event
|
|
{
|
|
/// <summary>
|
|
/// <see cref="EventType.StreamStarted"/>
|
|
/// </summary>
|
|
public sealed class StreamStartedEventArgs : RecordEventArgsBase
|
|
{
|
|
internal StreamStartedEventArgs(IRoom room) : base(room)
|
|
{
|
|
}
|
|
}
|
|
}
|