Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/app/Actions/
Upload File :
Current File : /var/www/html/bookstack/app/Actions/WebhookTrackedEvent.php

<?php

namespace BookStack\Actions;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

/**
 * @property int    $id
 * @property int    $webhook_id
 * @property string $event
 */
class WebhookTrackedEvent extends Model
{
    protected $fillable = ['event'];

    use HasFactory;
}