16 lines
259 B
TypeScript
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;
|
|
}
|
|
|
|
|