<?php
/**
*
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\KommaApp\Kms\Core\Tabs;
class KmsLanguageTab
{
public $id;
public $slug;
public $name;
function __construct($id, $slug, $name)
{
$this->id = $id;
$this->slug = $slug;
$this->name = $name;
}
}