package domainMessages import ( "synlotto-website/internal/models" ) // ToDo: Should be taken from model. type Notification = models.Notification // ToDo: Should interfaces be else where? type NotificationService interface { List(userID int64) ([]Notification, error) GetByID(userID, id int64) (*Notification, error) }