Structs.js
angular.module('homepage').
// Store templates, location and widget data
factory('Structs', function ($rootScope, DataStoreSrvc, GlobalDataService, Server) {
function DateRange() {
return {
start: null,
end: null
}
}
return {
DateRange: DateRange
}
});