blob: 2aad61194f28edb37300e5a0f448dbd1cc177d43 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import {IMainCategory} from "./category";
/**
* Created by ob0695 on 5/8/2017.
*/
export class Categories {
resourceCategories:Array<IMainCategory>;
productCategories:Array<IMainCategory>;
serviceCategories:Array<IMainCategory>;
}
|