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
329 B
C#
15 lines
329 B
C#
using BililiveRecorder.Core.SimpleWebhook;
|
|
|
|
namespace BililiveRecorder.Core.Event
|
|
{
|
|
/// <summary>
|
|
/// <see cref="EventType.StreamEnded"/>
|
|
/// </summary>
|
|
public sealed class StreamEndedEventArgs : RecordEventArgsBase
|
|
{
|
|
internal StreamEndedEventArgs(IRoom room) : base(room)
|
|
{
|
|
}
|
|
}
|
|
}
|