mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
7 lines
106 B
PHP
7 lines
106 B
PHP
|
<?php
|
||
|
|
||
|
class PaymentTerm extends Eloquent
|
||
|
{
|
||
|
public $timestamps = false;
|
||
|
protected $softDelete = false;
|
||
|
}
|