HotTRDealsFrontend/src/models/DealDraft.ts
cureb a48d32fdec created image array
ui overhaul
2026-01-23 17:28:05 +00:00

14 lines
237 B
TypeScript

import type { Seller } from "./seller/Seller"
export type DealDraft = {
title: string
description?: string
url: string
price?: number
imageUrl: string
images?: File[] // max 5
seller: Seller
customCompany?: string
}