coolify/app/Models/SharedEnvironmentVariable.php
2024-06-10 20:43:34 +00:00

16 lines
242 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SharedEnvironmentVariable extends Model
{
protected $guarded = [];
protected $casts = [
'key' => 'string',
'value' => 'encrypted',
];
}