mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 01:07:39 +08:00
10 lines
139 B
PHP
10 lines
139 B
PHP
|
<?php
|
||
|
|
||
|
namespace RainLoop\Enumerations;
|
||
|
|
||
|
class InterfaceAnimation
|
||
|
{
|
||
|
const NONE = 'None';
|
||
|
const NORMAL = 'Normal';
|
||
|
const FULL = 'Full';
|
||
|
}
|