mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 16:58:07 +08:00
9 lines
99 B
PHP
9 lines
99 B
PHP
|
<?php
|
||
|
|
||
|
namespace RainLoop\Enumerations;
|
||
|
|
||
|
class TimeFormat
|
||
|
{
|
||
|
const F12 = '12';
|
||
|
const F24 = '24';
|
||
|
}
|