Skip to content

Commit

Permalink
Add notification ID
Browse files Browse the repository at this point in the history
  • Loading branch information
Bardin08 committed May 23, 2024
1 parent 4a1d6e4 commit 807eb28
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Trumpee.MassTransit.Messages/Notifications/Notification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

public record Notification
{
public required string NotificationId { get; set; }

public Content? Content { get; init; }
public Priority? Priority { get; init; }

public string? Status { get; init; }

public DateTimeOffset? Timestamp { get; init; }
public Recipient Recipient { get; init; } = null!;
}
}

0 comments on commit 807eb28

Please sign in to comment.