17 lines
222 B
Go
17 lines
222 B
Go
package types
|
|
|
|
import "time"
|
|
|
|
const (
|
|
AppName = "ForeverFiles"
|
|
)
|
|
|
|
type FileMetadata struct {
|
|
Name string
|
|
Path string
|
|
Size int64
|
|
Hash []byte
|
|
ModifiedDate time.Time
|
|
BackedUp bool
|
|
}
|