<?php
namespace Source\Models;
use Source\Core\Model;
/**
* Class Batch
* @package Source\Models
*/
class Batch extends Model
{
/**
* Category constructor.
*/
public function __construct()
{
parent::__construct("batch", ["id"], ["title", "valid", "batch_number"]);
}
}