Commit 32636806 authored by prumde's avatar prumde

Removed unwanted code


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@174326 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 14b710bf
/**
* Category Model
* {catCode, curRank, descr, shDescr, resourceUrl}
*/
export class Category {
constructor(
public catCode: string = '',
public descr: string = '',
public shDescr: string = '',
public curRank: string = '',
public catLink: string = '',
public resourceUrl: string = '') {
console.log('comp this.resourceUrl[' + this.resourceUrl + ']');
}
}
export const MockTrendings: Category[] = [
new Category('food', 'Kabab Special', 'Authentic Home Made recipe','',''),
new Category('tour', 'Into the blue', 'Scuba diving in deep blue ocean','',''),
new Category('festival', 'Holi Celebration 2017', 'Celebrate with your loved ones','',''),
new Category('food', 'Kabab Special', 'Authentic Home Made recipe','',''),
new Category('festival', 'Holi Celebration 2017', 'Celebrate with your loved ones','',''),
new Category('tour', 'Into the blue', 'Scuba diving in deep blue ocean','',''),
new Category('festival', 'Holi Celebration 2017', 'Celebrate with your loved ones','',''),
new Category('food', 'Kabab Special', 'Authentic Home Made recipe','',''),
new Category('tour', 'Into the blue', 'Scuba diving in deep blue ocean','','')
];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment