mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03: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;
|
|
}
|