S2OJ/web/app/models/DBRawString.php

10 lines
103 B
PHP
Raw Normal View History

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