// SPDX-License-Identifier: LGPL-3.0-only pragma solidity >=0.7.0 <0.9.0; /** * @title Enum - Collection of enums used in Safe Smart Account contracts. * @author @safe-global/safe-protocol */ library Enum { enum Operation { Call, DelegateCall } }