UNPKG

py-uni

Version:

py-uni

21 lines (18 loc) 423 B
import {Departments} from "./departments.domain"; /** * */ export class Department{ Childs: Departments; constructor(options: { AdminIds?: string; Childs?: Departments; ExtAttrib?: string; Name?: string; NodeId?: number; OrderId?: number; ParentId?: number; } = {}) { this.Childs = new Departments(options.Childs); } }