12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
// 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
|
||
}
|