ngx-admin/docs/app/blocks/components/theme-block/theme-block.model.ts

26 lines
430 B
TypeScript
Raw Normal View History

2019-07-16 08:38:11 +03:00
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;
}
}