<?php
/**
* Short description for the file.
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2015, Komma Mediadesign
*/
namespace Komma\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;
}
}