draincloud-core/internal/storage/models/files/files.go

14 lines
183 B
Go
Raw Normal View History

2024-12-14 07:42:59 +00:00
package files
2024-12-15 16:56:03 +00:00
import "github.com/google/uuid"
2024-12-14 07:42:59 +00:00
type FileMetadata struct {
2024-12-15 16:56:03 +00:00
Id uuid.UUID
2024-12-14 07:42:59 +00:00
Name string
UserID int64
Ext string
Type string
FSLink string
Size int64
}