Proyectos de Subversion LeadersLinked - Services

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 192
Línea 5... Línea 5...
5
namespace LeadersLinked\Model;
5
namespace LeadersLinked\Model;
Línea 6... Línea 6...
6
 
6
 
7
class ChatMessage
7
class ChatMessage
Línea -... Línea 8...
-
 
8
{
-
 
9
    
-
 
10
    const STATUS_PUBLISHED = 'p';
-
 
11
    const STATUS_DELETED = 'd';
8
{
12
    const STATUS_REPORTED = 'r';
9
    
13
    
10
    const TYPE_TEXT = 'text';
14
    const TYPE_TEXT = 'text';
11
    const TYPE_IMAGE = 'image';
15
    const TYPE_IMAGE = 'image';
Línea 17... Línea 21...
17
    
21
    
18
    const SEEN_YES = 'y';
22
    const SEEN_YES = 'y';
Línea -... Línea 23...
-
 
23
    const SEEN_NO = 'n';
-
 
24
    
-
 
25
    
19
    const SEEN_NO = 'n';
26
 
20
    
27
    
21
    
28
    
22
    /**
29
    /**
23
     *
30
     *
Línea 76... Línea 83...
76
    
83
    
77
    /**
84
    /**
78
     *
85
     *
79
     * @var string
86
     * @var string
-
 
87
     */
-
 
88
    public $status;
-
 
89
    
-
 
90
    /**
-
 
91
     *
-
 
92
     * @var string
80
     */
93
     */
Línea 81... Línea 94...
81
    public $added_on;
94
    public $added_on;
82
    
95
    
83
    /**
96
    /**