BililiveRecorder/BililiveRecorder.Core/Event/RecordSessionStartedEventArgs.cs

16 lines
418 B
C#
Raw Permalink Normal View History

using System;
using BililiveRecorder.Core.SimpleWebhook;
2021-02-23 18:03:37 +08:00
namespace BililiveRecorder.Core.Event
{
/// <summary>
/// <see cref="EventType.SessionStarted"/>
/// </summary>
public sealed class RecordSessionStartedEventArgs : RecordEventArgsBase, IRecordSessionEventArgs
2021-02-23 18:03:37 +08:00
{
internal RecordSessionStartedEventArgs(IRoom room) : base(room) { }
2021-02-23 18:03:37 +08:00
public Guid SessionId { get; set; }
2021-02-23 18:03:37 +08:00
}
}