2026-05-02 13:02:38 +08:00

14 lines
219 B
Go

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