githubtrue/backend/app/Model/Device.php @ 1123608c
1 |
<?php
|
---|---|
2 |
/**
|
3 |
* Created by PhpStorm.
|
4 |
* User: Zdenda
|
5 |
* Date: 20.4.2018
|
6 |
* Time: 20:08
|
7 |
*/
|
8 |
|
9 |
namespace App\Model; |
10 |
|
11 |
|
12 |
class Device |
13 |
{
|
14 |
public $id; |
15 |
public $street; |
16 |
public $town; |
17 |
public $name; |
18 |
|
19 |
public function __construct() { |
20 |
}
|
21 |
}
|