mirror of
https://github.com/sakaljurgis/best-choice.git
synced 2026-07-08 21:47:40 +00:00
15 lines
299 B
TypeScript
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;
|
|
}
|