BililiveRecorder/BililiveRecorder.Core/Event/IRecordSessionEventArgs.cs
genteure 34ba4ded08 Add more webhook types
Added StreamStarted and StreamEnded
Close #269
2022-05-17 18:08:53 +08:00

10 lines
146 B
C#

using System;
namespace BililiveRecorder.Core.Event
{
public interface IRecordSessionEventArgs
{
Guid SessionId { get; }
}
}