mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
20 lines
340 B
PHP
20 lines
340 B
PHP
<?php
|
|
|
|
namespace Modules\Livestream\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class RestreamToken extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'client_id',
|
|
'access_token',
|
|
'refresh_token',
|
|
'scope',
|
|
'type',
|
|
];
|
|
}
|