<?php
namespace MailChannels;
class EximSuspendedRegex
{
private $regex;
private $action;
public function __construct($regex, $action)
{
$this->regex = $regex;
$this->action = $action;
}
public function getRegex()
{
return $this->regex;
}
public function getAction()
{
return $this->action;
}
}