summaryrefslogtreecommitdiff
path: root/pkg/model/file.go
blob: b19461b6cfe8fd4bcb4a82e28dd3beae43e0fc51 (plain) (blame)
1
2
3
4
5
6
7
package model

type File struct {
	Name     string `json:"name"`
	Size     int64  `json:"size"`
	FullName string `json:"full_name"`
}