15 lines
325 B
Go
15 lines
325 B
Go
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)
|
|
}
|