2026-05-11 01:40:29 +08:00

14 lines
221 B
Go

package notification
import "hyapp-admin-server/internal/model"
func unreadCount(items []model.Notification) int {
count := 0
for _, item := range items {
if item.ReadAtMS == nil {
count++
}
}
return count
}