Files
gridpilot.gg/core/racing/application/presenters/IEntitySponsorshipPricingPresenter.ts
2025-12-16 11:52:26 +01:00

4 lines
342 B
TypeScript

import type { Presenter } from '@core/shared/presentation/Presenter';
import type { GetEntitySponsorshipPricingResultDTO } from '../use-cases/GetEntitySponsorshipPricingUseCase';
export interface IEntitySponsorshipPricingPresenter extends Presenter<GetEntitySponsorshipPricingResultDTO | null, GetEntitySponsorshipPricingResultDTO | null> {}