mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
19 lines
343 B
PHP
19 lines
343 B
PHP
<?php
|
|
|
|
namespace Modules\StudioPlus\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class VideoResolution extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'studio_video_resolutions';
|
|
protected $fillable = [
|
|
'width',
|
|
'height',
|
|
'status',
|
|
];
|
|
}
|