friendica/src/Model/Notify/ObjectType.php

15 lines
213 B
PHP
Raw Normal View History

2020-02-04 22:01:55 +01:00
<?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';
}