Skip to content

Instantly share code, notes, and snippets.

@beatsm
beatsm / NodeModel.ts
Last active June 21, 2016 08:26 — forked from fabioluz/app.html
export class NodeModel {
public name: string;
public visible: boolean;
public children: NodeModel[];
public expanded: boolean;
public icon: string;
constructor(name: string, children: NodeModel[])
{
this.name = name;