invoiceninja/app/Libraries/Skype/ButtonCard.php

12 lines
217 B
PHP
Raw Normal View History

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