package sendaround
// FileInfo describes information about a file to be transferred peer-to-peer.
type FileInfo struct {
FileName string `json:"fileName"`
Length uint64 `json:"length"`
MimeType string `json:"mimeType"`
}