mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
15 lines
201 B
Go
15 lines
201 B
Go
package file
|
|
|
|
import (
|
|
"github.com/jinzhu/gorm"
|
|
)
|
|
|
|
type File struct {
|
|
gorm.Model
|
|
Name string
|
|
Path string
|
|
Type string
|
|
Size uint
|
|
Dimmensions string
|
|
FileUser User
|
|
}
|