File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
ServiceControl.Contracts.Tests/ApprovalFiles Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,11 @@ namespace ServiceControl.Contracts
4848 public System.Guid HostId { get; set; }
4949 public System.DateTime LastReceivedAt { get; set; }
5050 }
51+ public class MessageEditedAndRetried
52+ {
53+ public MessageEditedAndRetried() { }
54+ public string FailedMessageId { get; set; }
55+ }
5156 public class MessageFailed
5257 {
5358 public MessageFailed() { }
Original file line number Diff line number Diff line change 1+ namespace ServiceControl . Contracts
2+ {
3+ /// <summary>
4+ /// Event emitted by ServiceControl when edit-and-retry feature is used.
5+ /// </summary>
6+ public class MessageEditedAndRetried
7+ {
8+ /// <summary>
9+ /// The unique identifier of the message that was edited
10+ /// </summary>
11+ public string FailedMessageId { get ; set ; }
12+ }
13+ }
You can’t perform that action at this time.
0 commit comments