You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HandlerResponse<T> — envelope-aware return type for single-resource handlers: Result<(StatusCode, Json<ApiResponse<T>>), HandlerError>. Required by ADR platform/0016.
HandlerListResponse<T> — envelope-aware return type for collection handlers: Result<Json<ApiResponse<PaginatedResponse<T>>>, HandlerError>. Required by ADR platform/0016.
Removed
HandlerResult<T> — bare Json<T> wrapper removed. Migrate to HandlerResponse<T> or HandlerListResponse<T>.