package models import "time" type Notification struct { ID int UserId int Title string Body string IsRead bool CreatedAt time.Time }