HotTRDealsFrontend/src/models/Shared/SimilarDeal.ts

12 lines
254 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// src/models/deal/SimilarDeal.ts
export type SimilarDeal = {
id: number
title: string
price: number | null
score: number
imageUrl: string
sellerName: string
createdAt: string | null
// url: string | null // backend eklersek açarsın
}