diff --git a/pkg/core/object/address.go b/pkg/core/object/address.go new file mode 100644 index 000000000..a91082874 --- /dev/null +++ b/pkg/core/object/address.go @@ -0,0 +1,13 @@ +package object + +import ( + "github.com/nspcc-dev/neofs-sdk-go/object" + oid "github.com/nspcc-dev/neofs-sdk-go/object/id" +) + +// AddressWithType groups object address with its NeoFS +// object type. +type AddressWithType struct { + Address oid.Address + Type object.Type +}