mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 09:42:15 +01:00
12 lines
156 B
PHP
12 lines
156 B
PHP
<?php
|
|
|
|
namespace AppBundle\Model;
|
|
|
|
class ComptaModeReglement
|
|
{
|
|
const CB = 2;
|
|
const VIREMENT = 3;
|
|
const CHEQUE = 4;
|
|
const PRELEVEMENT = 5;
|
|
}
|