mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 21:34:12 +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;
|
|
}
|
|
} |