mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-10 07:53:44 +08:00
16 lines
226 B
PHP
16 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;
|
|
}
|