mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
15 lines
348 B
C#
15 lines
348 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.Core.Api.Danmaku
|
|
{
|
|
internal class DanmakuReceivedEventArgs : EventArgs
|
|
{
|
|
public readonly DanmakuModel Danmaku;
|
|
|
|
public DanmakuReceivedEventArgs(DanmakuModel danmaku)
|
|
{
|
|
this.Danmaku = danmaku ?? throw new ArgumentNullException(nameof(danmaku));
|
|
}
|
|
}
|
|
}
|