Delete unused files

This commit is contained in:
Vincent Guillet
2025-11-25 21:21:30 +01:00
parent 8317fc24d9
commit 64f00d5b30
14 changed files with 0 additions and 259 deletions

View File

@@ -1,4 +0,0 @@
export interface Brand {
id: string | number;
name: string;
}

View File

@@ -1,4 +0,0 @@
export interface Category {
id: string | number;
name: string;
}

View File

@@ -1,5 +0,0 @@
export interface Condition {
id: string | number;
name: string;
displayName: string;
}

View File

@@ -1,5 +0,0 @@
export interface Image {
id: string | number;
name : string;
url: string;
}

View File

@@ -1,7 +0,0 @@
import {Brand} from './brand';
export interface Platform {
id: string | number;
name: string;
brand: Brand | undefined;
}

View File

@@ -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;
}