13 lines
222 B
Go
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
|
|
}
|