1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00
any-sync/commonspace/object/tree/objecttree/signablecontent.go
2023-01-05 15:34:09 +03:00

13 lines
243 B
Go

package objecttree
import (
"github.com/anytypeio/any-sync/util/keys/asymmetric/signingkey"
)
type SignableChangeContent struct {
Data []byte
Key signingkey.PrivKey
Identity []byte
IsSnapshot bool
IsEncrypted bool
}