Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Autoría | Ultima modificación | Ver Log |

<?php

declare(strict_types=1);

namespace LeadersLinked\Model;

class Topics
{    

    const TYPE_HPTG = 'hptg';
    const TYPE_HPTGF = 'hptgf';
    const TYPE_MYT = 'myt';

    
    /**
     * 
     * @var int
     */
    public $id;

    /**
     * 
     * @var string
     */
    public $uuid;

    /**
     * 
     * @var int
     */
    public $title;

    /**
     * 
     * @var int
     */
    public $high_performance_group_id;

    /**
     *
     * @var string
     */
    public $description;
     
    /**
     *
     * @var string
     */
    public $type;

    /**
     *
     * @var string
     */
    public $added_on;
    
    /**
     *
     * @var string
     */
    public $updated_on;
}