﻿function SearchSuggestion(keyword, destination, price, imagePath, swatchPath) {
    this.keyword = keyword;
    this.destination = destination;
    this.price = price;
    this.imagePath = imagePath;
    this.swatchPath = swatchPath;
}
SearchSuggestion.prototype.IsDestinationCode = function() {
    return this.destination.toLowerCase().startsWith('javascript:');
}
