8 lines
176 B
C#
8 lines
176 B
C#
|
using Foxcord.Gateway.Events.Dispatch;
|
||
|
|
||
|
namespace Foxcord.Gateway.Events;
|
||
|
|
||
|
internal class DispatchEvent : IGatewayEvent
|
||
|
{
|
||
|
public required IDispatch Payload { get; init; }
|
||
|
}
|