linstrom/storage-new/models/NoteToBoost.go
mstar f3a139b809
Some checks are pending
/ test (push) Waiting to run
Add notification data
2025-04-04 11:26:03 +02:00

13 lines
222 B
Go

package models
import "time"
// Describes a user boosting one note
type NoteToBoost struct {
ID uint `gorm:"primarykey"`
CreatedAt time.Time
User User
UserId string
Note Note
NoteId string
}