11 lines
179 B
PHP
11 lines
179 B
PHP
<?php
|
|
|
|
class Service {
|
|
public $id = "";
|
|
public $name = "";
|
|
|
|
public function __construct($id, $name) {
|
|
$this->id = $id;
|
|
$this->name = $name;
|
|
}
|
|
} |