UNPKG

ntk-cms-api

Version:

Ntk Cms Api And Model For Typscript

17 lines (16 loc) 647 B
import { BaseModuleEntity } from '../base/baseModuleEntity'; import { DonateSponsorModel } from './donateSponsorModel'; import { DonateTargetModel } from './donateTargetModel'; export declare class DonateTargetCategoryModel extends BaseModuleEntity<number> { title: string; linkMainImageId?: number; description: string; fontIcon: string; linkParentId?: number; virtual_TargetCategory: DonateTargetCategoryModel; targetCategory: DonateTargetCategoryModel; children: DonateTargetCategoryModel[]; targets: DonateTargetModel[]; sponsors: DonateSponsorModel[]; linkMainImageIdSrc: string; }