11 lines
272 B
PHP
11 lines
272 B
PHP
|
<?php
|
||
|
|
||
|
class UploadConfig
|
||
|
{
|
||
|
public const COUNT = "upload_count";
|
||
|
public const SIZE = "upload_size";
|
||
|
public const MIN_FREE_SPACE = "upload_min_free_space";
|
||
|
public const TLSOURCE = "upload_tlsource";
|
||
|
public const TRANSLOAD_ENGINE = "transload_engine";
|
||
|
}
|