5 lines
233 B
TypeScript
5 lines
233 B
TypeScript
import type { GetEntitySponsorshipPricingResultDTO } from '../use-cases/GetEntitySponsorshipPricingUseCase';
|
|
|
|
export interface IEntitySponsorshipPricingPresenter {
|
|
present(data: GetEntitySponsorshipPricingResultDTO | null): void;
|
|
} |