mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-01 07:04:16 +01:00
11 lines
142 B
PHP
11 lines
142 B
PHP
<?php
|
|
|
|
class line_style
|
|
{
|
|
function line_style($on, $off)
|
|
{
|
|
$this->style = "dash";
|
|
$this->on = $on;
|
|
$this->off = $off;
|
|
}
|
|
} |