Delete unused files
This commit is contained in:
@@ -1,4 +0,0 @@
|
||||
export interface Brand {
|
||||
id: string | number;
|
||||
name: string;
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
export interface Category {
|
||||
id: string | number;
|
||||
name: string;
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
export interface Condition {
|
||||
id: string | number;
|
||||
name: string;
|
||||
displayName: string;
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
export interface Image {
|
||||
id: string | number;
|
||||
name : string;
|
||||
url: string;
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
import {Brand} from './brand';
|
||||
|
||||
export interface Platform {
|
||||
id: string | number;
|
||||
name: string;
|
||||
brand: Brand | undefined;
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
import {Category} from './category';
|
||||
import {Platform} from './platform';
|
||||
import {Condition} from './condition';
|
||||
|
||||
export interface Product {
|
||||
id: string | number;
|
||||
title: string;
|
||||
description: string;
|
||||
price: number;
|
||||
quantity: number;
|
||||
complete: boolean;
|
||||
manualIncluded: boolean;
|
||||
category: Category | undefined;
|
||||
platform: Platform | undefined;
|
||||
condition: Condition | undefined;
|
||||
}
|
||||
Reference in New Issue
Block a user