mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* adding paper tray status and error states * adding paper tray test data * Create jetdirect_papertray.json * Store printer supply type * Update json data * fix style
11 lines
177 B
PHP
11 lines
177 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Toner extends DeviceRelatedModel
|
|
{
|
|
protected $table = 'toner';
|
|
protected $primaryKey = 'toner_id';
|
|
public $timestamps = false;
|
|
}
|