mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
25 lines
430 B
TypeScript
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;
|
|
}
|
|
}
|