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

15 lines
349 B
C#
Raw Normal View History

2021-02-23 18:03:37 +08:00
using System;
namespace BililiveRecorder.Core.Api.Danmaku
{
public class DanmakuReceivedEventArgs : EventArgs
{
public readonly DanmakuModel Danmaku;
public DanmakuReceivedEventArgs(DanmakuModel danmaku)
{
this.Danmaku = danmaku ?? throw new ArgumentNullException(nameof(danmaku));
}
}
}