export enum IndustryType { // Healthcare HC1 = 'HC-1', // Pharma Distributor/ Wholesaler HC2 = 'HC-2', // Pharmacy Only - Retail HC3 = 'HC-3', // Hospital only HC4 = 'HC-4', // Hospital and Pharmacy // Automobile AUTO1 = 'AUTO-1', // Automobile Workshop AUTO2 = 'AUTO-2', // Automobile Dealer AUTO3 = 'AUTO-3', // Automobile Parts Distributor/ Wholesaler AUTO4 = 'AUTO-4', // Automobile Insurance Surveyor // Services SVCS1 = 'SVCS-1', // Equipment Dealer SVCS2 = 'SVCS-2', // Equipment Parts Distributor/ Wholesaler SVCS3 = 'SVCS-3', // Equipment Service Center // Manufacture MAN1 = 'MAN-1', // Paper Manufacturer OTHER = 'OTHER', // Any other business PROJECTS = "PROJECTS", // Projects, like electical line, cable line installation,...etc }