meraproject/module/timer/action/structure/eActionState.php

10 lines
128 B
PHP
Raw Normal View History

<?php
namespace timer\action\structure;
class eActionState {
const STOP = 1;
const PLAY = 2;
const PAUSE = 3;
}