// SPDX-License-Identifier: LGPL-3.0-only pragma solidity >=0.7.0 <0.9.0; /** * @title Enum - Collection of enums used in Safe contracts. * @author Richard Meissner - @rmeissner */ abstract contract Enum { enum Operation { Call, DelegateCall } }