package dto // BindingDTO defines inbound payload for binding creation/update. // It maps "(namespace, public_model)" to a RouteGroup and an upstream selector. type BindingDTO struct { Namespace string `json:"namespace"` PublicModel string `json:"public_model"` RouteGroup string `json:"route_group"` SelectorType string `json:"selector_type"` SelectorValue string `json:"selector_value"` Status string `json:"status"` }