17 lines
301 B
Go
17 lines
301 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Notification struct {
|
|
ID uuid.UUID `db:"id"`
|
|
UserID uuid.UUID `db:"user_id"`
|
|
Title string `db:"title"`
|
|
Body *string `db:"body"`
|
|
IsRead bool `db:"is_read"`
|
|
CreatedAt time.Time `db:"created_at"`
|
|
}
|