Files
fdn2/app/private/lib/dao/models/CBSQueueModel.php
T
2022-08-29 23:20:16 +02:00

23 lines
342 B
PHP

<?php
/*
Author: Riccardo Di Dato
Creation Date: 22/feb/2016
*/
class CBSQueueModel extends Model{
public function __construct($saveableObject = null){
parent::__construct($saveableObject);
if (!$this->hasProperty("retry")){
$this->retry = 0;
}
}
public static function getCollectionName(){
return "CBS_queue";
}
}
?>