| 1 | <?php |
||
| 21 | class Share extends ModelAbstract |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Seria |
||
| 25 | * |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | public $seria; |
||
| 29 | /** |
||
| 30 | * Ilość akcji |
||
| 31 | * |
||
| 32 | * @var integer |
||
| 33 | */ |
||
| 34 | public $liczba; |
||
| 35 | /** |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | public $rodzaj_uprzywilejowania; |
||
| 39 | |||
| 40 | |||
| 41 | /** |
||
| 42 | * Share constructor. |
||
| 43 | * |
||
| 44 | * @param \stdClass|null $oData |
||
| 45 | * |
||
| 46 | * @throws \mrcnpdlk\MojePanstwo\Exception |
||
| 47 | */ |
||
| 48 | public function __construct(\stdClass $oData = null) |
||
| 55 | } |
||
| 56 |