Files
2025-10-14 13:30:44 +03:00

15 lines
299 B
TypeScript

export type PriceCondition = 'new' | 'used';
export interface ItemPrice {
id: string;
itemId: string;
condition: PriceCondition;
amount: number;
currency: string;
sourceUrlId: string | null;
sourceUrl: string | null;
note: string | null;
createdAt: string;
updatedAt: string;
}