Billie/app/Models/Android/Task_waiting.php

12 lines
241 B
PHP
Raw Normal View History

2025-05-06 02:47:26 +00:00
<?php
namespace App\Models\Android;
use Illuminate\Database\Eloquent\Model;
class Task_waiting extends Model
{
protected $table = "android_task_waiting";
protected $fillable = ["user_id", "android_topic_id", "android_task_id"];
}