1234567891011121314151617181920 |
- <?php
- namespace DeviceBundle\Utils;
- class DeviceTypes
- {
- use ChoiceTrait;
- const FTTH_OLT = 'FTTHBundle\Entity\OLT';
- const FTTH_ONU = 'FTTHBundle\Entity\ONU';
- const RADIUS_NAS = 'RadiusBundle\Entity\NAS';
- const CABLEMODEM_CMTS = 'CablemodemBundle\Entity\CMTS';
- const CABLEMODEM_CM = 'CablemodemBundle\Entity\Cablemodem';
- }
|