Files
Lunaris2.0/Bot/Notification/SlashCommandReceivedNotification.cs
2024-06-01 23:19:53 +02:00

9 lines
278 B
C#

using Discord.WebSocket;
using MediatR;
namespace Lunaris2.Notification;
public class SlashCommandReceivedNotification(SocketSlashCommand message) : INotification
{
public SocketSlashCommand Message { get; } = message ?? throw new ArgumentNullException(nameof(message));
}