mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-11 16:34:39 +08:00
17 lines
226 B
PHP
17 lines
226 B
PHP
|
<?php
|
||
|
|
||
|
namespace MailSo\Mime\Enumerations;
|
||
|
|
||
|
/**
|
||
|
* @category MailSo
|
||
|
* @package Mime
|
||
|
* @subpackage Enumerations
|
||
|
*/
|
||
|
class Sensitivity
|
||
|
{
|
||
|
const NOTHING = 0;
|
||
|
const CONFIDENTIAL = 1;
|
||
|
const PRIVATE_ = 2;
|
||
|
const PERSONAL = 3;
|
||
|
}
|