BililiveRecorder/BililiveRecorder.Core/Api/Danmaku/DanmakuReceivedEventArgs.cs

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));
}
}
}