ngx-admin/docs/app/blocks/components/theme-block/theme-block.model.ts
Sergey Andrievskiy 2129689f98 feat: docs app
2020-08-28 19:29:11 +03:00

25 lines
430 B
TypeScript

import { Injectable } from '@angular/core';
@Injectable()
export class ThemeBlockModel {
themeTitle: string;
themeName: string;
parentTheme: string;
themeProperties: any[];
setThemeTitle(value) {
this.themeTitle = value;
}
setThemeName(value) {
this.themeName = value;
}
setParentTheme(value) {
this.parentTheme = value;
}
setThemeProperties(value) {
this.themeProperties = value;
}
}