fembooru/core/block.class.php

12 lines
146 B
PHP
Raw Normal View History

<?php
class Block {
var $header;
var $body;
public function Block($header, $body) {
$this->header = $header;
$this->body = $body;
}
}
?>