// SPDX-License-Identifier: MIT // solhint-disable private-vars-leading-underscore pragma solidity ^0.8.13; import "../../../../../renting/Rentings.sol"; interface IListingTermsAware { /** * @dev Returns list of listing terms for given listing and renting parameters */ function __getListingTerms( Rentings.Params calldata params, Listings.Listing calldata listing, uint256 universeId ) external view returns (IListingTermsRegistry.ListingTerms[] memory listingTerms); }