1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-01-31 02:10:00 +00:00
S2OJ/web/app/models/DBRawString.php

10 lines
103 B
PHP
Raw Normal View History

2022-11-06 10:26:21 +08:00
<?php
class DBRawString {
public $str = '';
function __construct($str) {
$this->str = $str;
}
}