School Commit Init
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
type Drug = {
|
||||
id: number;
|
||||
name: string;
|
||||
price: number;
|
||||
stock: number;
|
||||
manufacturer: string;
|
||||
description: string;
|
||||
sideEffects: string;
|
||||
interactions: string;
|
||||
dosage: string;
|
||||
contraindications: string;
|
||||
warnings: string;
|
||||
storage: string;
|
||||
pregnancy: string;
|
||||
breastfeeding: string;
|
||||
overdose: string;
|
||||
|
||||
};
|
||||
|
||||
export default Drug;
|
||||
@@ -0,0 +1,9 @@
|
||||
type Manufacturer = {
|
||||
id: number | null;
|
||||
name: string;
|
||||
address: string;
|
||||
contact: string;
|
||||
totalCount: number;
|
||||
}
|
||||
|
||||
export default Manufacturer;
|
||||
Reference in New Issue
Block a user