import { OfferDTO } from "./OfferDTO"; import { ReviewRatingDTO } from "./ReviewRatingDTO"; import { PaywallDTO } from "./PaywallDTO"; export interface EntityDTO { card: TCard; offer?: OfferDTO; reviewRating?: ReviewRatingDTO; paywall?: PaywallDTO; }