13 lines
163 B
Go
13 lines
163 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Notification struct {
|
|
ID int
|
|
UserId int
|
|
Title string
|
|
Body string
|
|
IsRead bool
|
|
CreatedAt time.Time
|
|
}
|