7 lines
84 B
PHP
7 lines
84 B
PHP
<?php
|
|
namespace Szurubooru\Entities;
|
|
|
|
abstract class Entity
|
|
{
|
|
public $id = null;
|
|
}
|