Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
<?php
declare(strict_types=1);
namespace LeadersLinked\Model;
class Page
{
const TYPE_PAGE = 'p';
const TYPE_URL = 'u';
const PAGE_ID_PRIVACY_POLICY = 'privacy-policy';
const PAGE_ID_PROFESSIONALISM_POLICY = 'professionalism-policy';
const PAGE_ID_COOKIES = 'cookies';
const PAGE_ID_TERMS_AND_CONDITIONS = 'terms-and-conditions';
const STATUS_ACTIVE = 'a';
const STATUS_INACTIVE = 'i';
const YES = 'y';
const NO = 'n';
/**
*
* @var string
*/
public $id;
/**
*
* @var string
*/
public $title;
/**
*
* @var string
*/
public $content;
/**
*
* @var string
*/
public $type;
/**
*
* @var string
*/
public $url;
/**
*
* @var string
*/
public $fixed;
/**
*
* @var string
*/
public $added_on;
/**
*
* @var string
*/
public $updated_on;
/**
*
* @var string
*/
public $status;
}