Files
ai-agent/internal/pkg/dto/request/notification_request.go
T

16 lines
441 B
Go
Raw Normal View History

package request
type CreateNotificationRequest struct {
RecipientUserID int64 `json:"recipient_user_id"`
Title string `json:"title"`
Content string `json:"content"`
NotificationType string `json:"notification_type"`
BizType string `json:"biz_type"`
BizID int64 `json:"biz_id"`
ActionURL string `json:"action_url"`
}
type MarkNotificationReadRequest struct {
ID int64 `json:"id"`
}