mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 05:18:42 +00:00
10 lines
103 B
PHP
10 lines
103 B
PHP
|
<?php
|
||
|
|
||
|
class DBRawString {
|
||
|
public $str = '';
|
||
|
|
||
|
function __construct($str) {
|
||
|
$this->str = $str;
|
||
|
}
|
||
|
}
|