1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-13 14:42:42 +01:00
invoiceninja/app/Libraries/Skype/ButtonCard.php

13 lines
260 B
PHP
Raw Normal View History

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