mirror of
https://github.com/Myxelium/Lunaris2.0.git
synced 2026-04-11 15:19:53 +00:00
* Working chatbot * Clean * Working LLM chatbot --------- Co-authored-by: Myx <info@azaaxin.com>
9 lines
278 B
C#
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));
|
|
} |