341afe6a7b
FossilOrigin-Name: ff5fc2aff4eab5aa2817d5b6183a5ab842bc701609fb255e97728a2a95e19c14
22 lines
322 B
PHP
22 lines
322 B
PHP
<?php
|
|
|
|
namespace Garradin\Plugin\RecusFiscaux;
|
|
|
|
class Versement
|
|
{
|
|
public $idActivite;
|
|
public $idTarif;
|
|
public $montant;
|
|
public $tauxReduction;
|
|
|
|
public function __construct(
|
|
$idActivite,
|
|
$idTarif,
|
|
$montant
|
|
) {
|
|
$this->idActivite = $idActivite;
|
|
$this->idTarif = $idTarif;
|
|
$this->montant = $montant;
|
|
}
|
|
}
|