/**
 * 业务运行记录列表
 */
import {BusinessRunRecord} from "./businessRunRecord.domain";

export class BusinessRunRecordList {
    _Items: BusinessRunRecord[];
    constructor(options: {
        _Items?: Array<BusinessRunRecord>
    } = {}) {
        this._Items = options._Items || [];
    }
}
