Changeset e882b92 for ChapterX.Application/Notification/Commands
- Timestamp:
- 08/24/26 20:57:09 (13 days ago)
- Branches:
- main
- Parents:
- a6e33d1
- 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
ra6e33d1 re882b92 21 21 { 22 22 Content = request.Content, 23 ContentType = request.ContentType, 23 24 IsRead = false, 25 Link = request.Link, 26 UserId = request.UserId, 27 StoryId = request.StoryId, 24 28 CreatedAt = DateTime.UtcNow, 25 RecipientUserId = request.RecipientUserId,26 Type = request.Type,27 Link = request.Link,28 29 }; 29 30 -
ChapterX.Application/Notification/Commands/AddRequest.cs
ra6e33d1 re882b92 3 3 namespace ChapterX.Application.Notification.Commands 4 4 { 5 public record AddRequest(string Content, int? RecipientUserId = null, string? Type= null, string? Link = null) : IRequest<AddResponse>;5 public record AddRequest(string Content, string ContentType, int UserId, int? StoryId = null, string? Link = null) : IRequest<AddResponse>; 6 6 }
Note:
See TracChangeset
for help on using the changeset viewer.
