// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.20; interface ITicketContract { function getEventContract() external view returns (address); function getTicketTypesForTicket(uint256 _tokenId) external view returns (uint256); function getResellPaymentSplitter() external view returns (address); }