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