invoiceninja/app/Libraries/Skype/ButtonCard.php

13 lines
260 B
PHP
Raw Normal View History

2016-08-10 15:57:34 +03:00
<?php namespace App\Libraries\Skype;
class ButtonCard
{
2016-08-13 22:19:37 +03:00
public function __construct($type, $title, $value, $url = false)
2016-08-10 15:57:34 +03:00
{
$this->type = $type;
$this->title = $title;
$this->value = $value;
2016-08-13 22:19:37 +03:00
$this->image = $url;
2016-08-10 15:57:34 +03:00
}
}