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