Fire particles not colliding with object which has trigger checked

I wanted to make a turret which blows fire but whenever i make my enemies as a trigger then particle system is not detecting collision with them as OnParticleCollision() function is not called when my enemy is trigger,I solved by using box collider attaching to particle system but it wont work exact proper so is their any way that i can make particles detect the collision when they interact with trigger object…

No, particles do not collide with Trigger enabled objects.

Trigger is used to see if another object has entered its physical collider.
Particle Collision is used to see if an object has hit the particle but not necessarily enter it.

You’ll have to find another way.