UNPKG

py-uni

Version:

py-uni

12 lines (9 loc) 236 B
import {Department} from "./department.domain"; export class Departments{ _Items: Department[]; constructor(options: { _Items?: Department[] } = {}) { this._Items = options._Items || []; } }