﻿class CancelEventArgs {
    constructor(c = false) {
        this.cancel = c;
    }
}
module.exports = CancelEventArgs;
