1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00
invoiceninja/app/Libraries/Skype/ButtonCard.php

15 lines
261 B
PHP
Raw Normal View History

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