mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
15 lines
349 B
C#
15 lines
349 B
C#
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));
|
|
}
|
|
}
|
|
}
|