From 861df0e4dda8ba6b0ab4d39400823a1bf66dcf7a Mon Sep 17 00:00:00 2001 From: neroduckale Date: Fri, 1 Dec 2023 06:46:44 +0500 Subject: [PATCH] listremind now has a link to a message with the creation of a reminder for messages like "this" #2 --- src/Data/Reminder.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Data/Reminder.cs b/src/Data/Reminder.cs index 42144f9..022838a 100644 --- a/src/Data/Reminder.cs +++ b/src/Data/Reminder.cs @@ -5,4 +5,5 @@ public struct Reminder public DateTimeOffset At { get; init; } public string Text { get; init; } public ulong Channel { get; init; } + public string Message { get; init; } }