14 lines
183 B
Go
14 lines
183 B
Go
package files
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type FileMetadata struct {
|
|
Id uuid.UUID
|
|
Name string
|
|
UserID int64
|
|
Ext string
|
|
Type string
|
|
FSLink string
|
|
Size int64
|
|
}
|