mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
14 lines
182 B
PHP
14 lines
182 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBTable;
|
|
|
|
/**
|
|
* Index class.
|
|
*/
|
|
class Index
|
|
{
|
|
public $name;
|
|
public $columns = array();
|
|
public $type = null;
|
|
public $options = null;
|
|
}
|