diff --git a/date_utils/date_utils.go b/date_utils/date_utils.go
index ccca80d5014f376762ba0d395f13640e78e59b97..edace1f239e17a5e2dbc175886dd3d56f843d201 100644
--- a/date_utils/date_utils.go
+++ b/date_utils/date_utils.go
@@ -1,10 +1,11 @@
 package date_utils
 
 import (
-	"github.com/araddon/dateparse"
 	"reflect"
 	"strconv"
 	"time"
+
+	"github.com/araddon/dateparse"
 )
 
 const TimeZoneString = "Africa/Johannesburg"
@@ -271,3 +272,8 @@ func formatTimestampsWithTimeZoneInSlice(fieldValue reflect.Value, location *tim
 	}
 	return nil
 }
+
+type TradingHours struct {
+	Days  string `json:"days"`
+	Times string `json:"times"`
+}