Files
jambotron/jambotron-ui/src/app/models/tutorial.model.ts
T

16 lines
259 B
TypeScript

export class Tutorial {
isSelected?: boolean;
fileName?: any;
title?: string;
description?: string;
published?: boolean;
created?: Date;
modified?: Date;
tobepublished?: boolean;
isEdit?: boolean;
titleimage?: string;
body?: string;
}