nettsiden/src/pvv/side/event.php

11 lines
183 B
PHP
Raw Normal View History

<?php declare(strict_types=1);
namespace pvv\side;
interface Event extends Activity {
public function getStart(); /* : DateTime */
public function getStop(); /* : DateTime */
}