diff --git a/src/models/filestats.go b/src/models/filestats.go index 7cf13be..446e831 100644 --- a/src/models/filestats.go +++ b/src/models/filestats.go @@ -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 }