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

16 lines
316 B
PHP
Raw Normal View History

2016-08-10 16:04:17 +02:00
<?php namespace App\Libraries\Skype;
class CarouselCard
{
public function __construct()
{
$this->contentType = 'application/vnd.microsoft.card.carousel';
$this->attachments = [];
}
public function addAttachment($attachment)
{
$this->attachments[] = $attachment;
}
}