to much to describe, everything in PR

This commit is contained in:
2026-03-24 20:25:18 +05:00
parent 36f2551c60
commit 87df56f41e
13 changed files with 1138 additions and 290 deletions

View File

@@ -0,0 +1,16 @@
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"`
}