invoiceninja/app/Libraries/Skype/ButtonCard.php

15 lines
261 B
PHP
Raw Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Libraries\Skype;
2016-08-10 15:57:34 +03:00
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
}
}