mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-09 07:35:38 +00:00
18 lines
227 B
TypeScript
18 lines
227 B
TypeScript
export class Project {
|
|
private schema: any;
|
|
|
|
constructor() {
|
|
this.schema = {};
|
|
}
|
|
|
|
getSchema() {
|
|
return this.schema;
|
|
}
|
|
|
|
setSchema(schema: any) {
|
|
this.schema = schema;
|
|
}
|
|
}
|
|
|
|
export default new Project();
|