mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
24 lines
349 B
PHP
24 lines
349 B
PHP
<?php
|
|
/*
|
|
*
|
|
*/
|
|
namespace Chill\AMLI\BudgetBundle\Calculator;
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
|
*/
|
|
class CalculatorResult
|
|
{
|
|
const TYPE_RATE = 'rate';
|
|
const TYPE_CURRENCY = 'currency';
|
|
const TYPE_PERCENTAGE = 'percentage';
|
|
|
|
public $type;
|
|
|
|
public $result;
|
|
|
|
public $label;
|
|
}
|