UNPKG

py-uni

Version:

py-uni

14 lines (12 loc) 278 B
import {TagReportStatistic} from './tagreportstatistic.domain'; /** * */ export class TagReportStatistics { _Items: TagReportStatistic[]; constructor(options: { _Items?: Array<TagReportStatistic> } = {}) { this._Items = options._Items || []; } }