Changeset 73b69b2 for ChapterX.Application/Notification
- Timestamp:
- 03/24/26 22:13:36 (3 months ago)
- Branches:
- main
- Children:
- 7fbb91c
- Parents:
- acf690c
- Location:
- ChapterX.Application/Notification/Commands
- Files:
-
- 2 edited
-
AddHandler.cs (modified) (1 diff)
-
AddRequest.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.Application/Notification/Commands/AddHandler.cs
racf690c r73b69b2 22 22 Content = request.Content, 23 23 IsRead = false, 24 CreatedAt = DateTime.UtcNow 24 CreatedAt = DateTime.UtcNow, 25 RecipientUserId = request.RecipientUserId, 26 Type = request.Type, 27 Link = request.Link, 25 28 }; 26 29 -
ChapterX.Application/Notification/Commands/AddRequest.cs
racf690c r73b69b2 3 3 namespace ChapterX.Application.Notification.Commands 4 4 { 5 public record AddRequest(string Content ) : IRequest<AddResponse>;5 public record AddRequest(string Content, int? RecipientUserId = null, string? Type = null, string? Link = null) : IRequest<AddResponse>; 6 6 }
Note:
See TracChangeset
for help on using the changeset viewer.
