// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; /** * @title SOMA Mintable Security Contract. * @author SOMA.finance. * @notice Interface of the {MintableSecurity} contract. */ interface IDeprecatableSecurity { /** * @notice Deprecates a given id for the token * @param id the id of the token to deprecate * @param data any data associated with the call */ function deprecatePartition(bytes32 id, bytes memory data) external; }