HOME


Mini Shell 1.0
DIR:/usr/local/cwpsrv/var/services/roundcube/plugins/libkolab/vendor/Caxy/HtmlDiff/
Upload File :
Current File : //usr/local/cwpsrv/var/services/roundcube/plugins/libkolab/vendor/Caxy/HtmlDiff/Operation.php
<?php

namespace Caxy\HtmlDiff;

class Operation
{
    public $action;
    public $startInOld;
    public $endInOld;
    public $startInNew;
    public $endInNew;

    public function __construct($action, $startInOld, $endInOld, $startInNew, $endInNew)
    {
        $this->action = $action;
        $this->startInOld = $startInOld;
        $this->endInOld = $endInOld;
        $this->startInNew = $startInNew;
        $this->endInNew = $endInNew;
    }
}