Added support for MOTD and whispers. Commands can opt into responding to whispers and there's a helper method to handle replying through the correct channel.

This commit is contained in:
barelyprofessional
2026-03-18 23:50:32 -05:00
parent 4cdb04e3c5
commit 01a4b26326
44 changed files with 683 additions and 148 deletions

View File

@@ -0,0 +1,12 @@
namespace KfChatDotNetWsClient.Models.Events;
public class WhisperModel
{
public required UserModel Author { get; set; }
public required UserModel Recipient { get; set; }
public required string Message { get; set; }
public required string MessageRaw { get; set; }
public required DateTimeOffset MessageDate { get; set; }
public required string MessageRawHtmlDecoded { get; set; }
}