mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-15 19:22:19 +08:00
34ba4ded08
Added StreamStarted and StreamEnded Close #269
24 lines
539 B
C#
24 lines
539 B
C#
using System;
|
|
using BililiveRecorder.Core.Event;
|
|
|
|
namespace BililiveRecorder.Core.SimpleWebhook
|
|
{
|
|
internal class EventWrapper<T> where T : RecordEventArgsBase
|
|
{
|
|
public EventWrapper() { }
|
|
|
|
public EventWrapper(T data)
|
|
{
|
|
this.EventData = data;
|
|
}
|
|
|
|
public EventType EventType { get; set; }
|
|
|
|
public DateTimeOffset EventTimestamp { get; set; } = DateTimeOffset.Now;
|
|
|
|
public Guid EventId { get; set; } = Guid.NewGuid();
|
|
|
|
public T? EventData { get; set; }
|
|
}
|
|
}
|