hmn/src/models/asset.go

20 lines
459 B
Go
Raw Normal View History

2021-06-22 09:50:40 +00:00
package models
import (
"github.com/google/uuid"
)
type Asset struct {
ID uuid.UUID `db:"id"`
UploaderID *int `db:"uploader_id"`
2023-05-17 19:33:27 +00:00
S3Key string `db:"s3_key"`
2023-05-19 03:07:14 +00:00
ThumbnailS3Key string `db:"thumbnail_s3_key"`
2023-05-17 19:33:27 +00:00
Filename string `db:"filename"`
Size int `db:"size"`
MimeType string `db:"mime_type"`
Sha1Sum string `db:"sha1sum"`
Width int `db:"width"`
Height int `db:"height"`
2021-06-22 09:50:40 +00:00
}