add is compressed/encrypted to filestats
This commit is contained in:
parent
1f64d1c93a
commit
f977ac24c4
|
|
@ -2,10 +2,13 @@ package models
|
|||
|
||||
import "time"
|
||||
|
||||
// FileStats are the file stats transfered to the other
|
||||
type FileStats struct {
|
||||
Name string
|
||||
Size int64
|
||||
ModTime time.Time
|
||||
IsDir bool
|
||||
SentName string
|
||||
Name string
|
||||
Size int64
|
||||
ModTime time.Time
|
||||
IsDir bool
|
||||
SentName string
|
||||
IsCompressed bool
|
||||
IsEncrypted bool
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue