mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Added property for when a sent message was last edited
This commit is contained in:
@@ -10,6 +10,11 @@ public class SentMessageTrackerModel
|
||||
// Timespan from when the message was sent until we saw it come back
|
||||
public TimeSpan? Delay { get; set; }
|
||||
public DateTimeOffset? SentAt { get; set; }
|
||||
/// <summary>
|
||||
/// If the message was edited, this is the last edit time that Sneedchat sent us
|
||||
/// When edited multiple times, it'll be the most recent edit
|
||||
/// </summary>
|
||||
public DateTimeOffset? LastEdited { get; set; } = null;
|
||||
}
|
||||
|
||||
public enum SentMessageTrackerStatus
|
||||
|
||||
Reference in New Issue
Block a user