2017-05-21 12:03:05 -04:00

9 lines
110 B
PHP

<?php
namespace BusinessLogic\Navigation;
class Direction {
const UP = 'up';
const DOWN = 'down';
}