Files
mayfly-go/server/internal/file/api/vo/file.go

8 lines
139 B
Go
Raw Normal View History

package vo
type SimpleFile struct {
Filename string `json:"filename"`
FileKey string `json:"fileKey"`
Size int64 `json:"size"`
}