mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-10 07:04:53 +08:00
10 lines
133 B
PHP
10 lines
133 B
PHP
<?php
|
|
|
|
namespace RainLoop\Enumerations;
|
|
|
|
class Layout
|
|
{
|
|
const NO_PREVIEW = 0;
|
|
const SIDE_PREVIEW = 1;
|
|
const BOTTOM_PREVIEW = 2;
|
|
}
|