<?php

namespace Koneko\SatCatalogs\Models;

class RiesgoPuesto
{
    // Definición de constantes para Riesgo de Puesto
    const RIESGO_PUESTO_CLASE_I = '1';
    const RIESGO_PUESTO_CLASE_II = '2';
    const RIESGO_PUESTO_CLASE_III = '3';
    const RIESGO_PUESTO_CLASE_IV = '4';
    const RIESGO_PUESTO_CLASE_V = '5';

    public static $riesgoPuesto = [
        self::RIESGO_PUESTO_CLASE_I => 'Clase I',
        self::RIESGO_PUESTO_CLASE_II => 'Clase II',
        self::RIESGO_PUESTO_CLASE_III => 'Clase III',
        self::RIESGO_PUESTO_CLASE_IV => 'Clase IV',
        self::RIESGO_PUESTO_CLASE_V => 'Clase V'
    ];

}