aswi2021mr-proper-gitlab/application/model/Lemma.php @ 6f8c9e05
1 |
<?php
|
---|---|
2 |
|
3 |
class Lemma { |
4 |
public $id; |
5 |
public $lemma; |
6 |
public $pos; |
7 |
|
8 |
public function __construct($id, $lemma, $pos) |
9 |
{
|
10 |
$this->id = $id; |
11 |
$this->lemma = $lemma; |
12 |
$this->pos = $pos; |
13 |
}
|
14 |
}
|