Files
2026-02-18 20:38:08 +01:00

13 lines
396 B
Protocol Buffer

syntax = "proto3";
package common.obound.v1;
option go_package = "github.com/tech/sendico/pkg/proto/common/organization_bound/v1;oboundv1";
// OrganizationBound is an embeddable fragment that ties a record to an
// organisation for multi-tenancy isolation.
message OrganizationBound {
// organization_ref is the unique identifier of the owning organisation.
string organization_ref = 1;
}