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