I am trying to display a users business hours in one timezone to another timezone.
A users business hours is stored as below object for each day of the week
Timezone = Asia/Kolakata
Day number = 3 (Wednesday)
Hour = 7:00 (12 hour system)
the above is in IST
But now if i need to reteive this for a user in Australia, I can change the timezone and get the value. But this would be incorrect as a business hour available on Monday in one timezone might be valid for Tuesday in another. What is the best way to deal with this conversion?
The objects are being store and retrieved from Firestore.
Any help/guidance would be appreciated
thanks