mirror of
https://github.com/kuaifan/dootask.git
synced 2026-09-10 22:19:02 +00:00
13 lines
189 B
PHP
13 lines
189 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class WebDavProperty extends AbstractModel
|
|
{
|
|
protected $table = 'webdav_properties';
|
|
|
|
protected $casts = [
|
|
'value_type' => 'integer',
|
|
];
|
|
}
|