nquest/pkg/models/file.go

11 lines
142 B
Go
Raw Normal View History

2024-01-20 21:37:49 +03:00
package models
type File struct {
Model
Filename string
ContentType string
Size int
Body []byte `gorm:"type:bytea"`
}