1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-01-12 08:01:52 +00:00
S2OJ/web/app/models/DBRawString.php

10 lines
103 B
PHP

<?php
class DBRawString {
public $str = '';
function __construct($str) {
$this->str = $str;
}
}