Spaces:
Sleeping
Sleeping
File size: 300 Bytes
287a0bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
package model
const (
NotificationTypeCreateCollection = "create_collection"
NotificationTypeDeleteCollection = "delete_collection"
)
const (
NotificationStatusPending = "pending"
)
type Notification struct {
ID int64
CollectionID string
Type string
Status string
}
|