snappymail/rainloop/v/0.0.0/app/libraries/MailSo/Mime/Enumerations/Sensitivity.php
2014-10-17 14:15:19 +04:00

25 lines
424 B
PHP

<?php
/*
* This file is part of MailSo.
*
* (c) 2014 Usenko Timur
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace MailSo\Mime\Enumerations;
/**
* @category MailSo
* @package Mime
* @subpackage Enumerations
*/
class Sensitivity
{
const NOTHING = 0;
const CONFIDENTIAL = 1;
const PRIVATE_ = 2;
const PERSONAL = 3;
}