using models.Core; using models.Response; namespace api.Interfaces; public interface ITicketManager { void SaveMintedTicket(Ticket ticket); TicketSearch SearchTicket(Guid ticketId); MintResponse GetMintResponse(Guid ticketId); }