mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-27 12:35:35 +08:00
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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|