mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-02-23 10:26:34 -05: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;
|
|
}
|
|
} |