mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
34ba4ded08
Added StreamStarted and StreamEnded Close #269
10 lines
146 B
C#
10 lines
146 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Core.Event
|
|
{
|
|
public interface IRecordSessionEventArgs
|
|
{
|
|
Guid SessionId { get; }
|
|
}
|
|
}
|