Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1841 eleazar 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Model;
6
 
7
class Topics
8
{
9
 
10
    const TYPE_HPTG = 'hptg';
11
    const TYPE_HPTGF = 'hptgf';
12
    const TYPE_MYT = 'myt';
13
 
14
 
15
    /**
16
     *
17
     * @var int
18
     */
19
    public $id;
20
 
21
    /**
22
     *
23
     * @var string
24
     */
25
    public $uuid;
26
 
27
    /**
28
     *
29
     * @var int
30
     */
31
    public $title;
32
 
33
    /**
34
     *
35
     * @var int
36
     */
37
    public $high_performance_group_id;
38
 
39
    /**
40
     *
41
     * @var string
42
     */
43
    public $description;
44
 
45
    /**
46
     *
47
     * @var string
48
     */
49
    public $type;
50
 
51
    /**
52
     *
53
     * @var string
54
     */
55
    public $added_on;
56
 
57
    /**
58
     *
59
     * @var string
60
     */
61
    public $updated_on;
62
}