Modified the seen msgs thing so it now respects edits by tracking last edit time if set

This commit is contained in:
barelyprofessional
2024-09-21 00:24:23 +08:00
parent 82c37c2ece
commit f55bdd0120
2 changed files with 36 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
namespace KfChatDotNetBot.Models;
public class SeenMessageMetadataModel
{
public int MessageId { get; set; }
public DateTimeOffset? LastEdited { get; set; }
}