friendica/src/Model/Notify/ObjectType.php
2020-02-05 21:40:59 +01:00

15 lines
213 B
PHP

<?php
namespace Friendica\Model\Notify;
/**
* Enum for different otypes of the Notify
*/
class ObjectType
{
const PERSON = 'person';
const MAIL = 'mail';
const ITEM = 'item';
const INTRO = 'intro';
}