BookStack/app/Actions/WebhookTrackedEvent.php

19 lines
326 B
PHP
Raw Normal View History

<?php
namespace BookStack\Actions;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
/**
2021-12-18 11:43:05 +00:00
* @property int $id
* @property int $webhook_id
* @property string $event
*/
class WebhookTrackedEvent extends Model
{
use HasFactory;
2022-09-18 00:25:20 +00:00
protected $fillable = ['event'];
}