Added 4G for Cellular choices.

This commit is contained in:
Julio-Oliveira-Encora 2024-05-21 10:23:21 -03:00
parent 5f9fc9ce9f
commit d3e25f6bfa

View File

@ -892,6 +892,7 @@ class InterfaceTypeChoices(ChoiceSet):
TYPE_GSM = 'gsm'
TYPE_CDMA = 'cdma'
TYPE_LTE = 'lte'
TYPE_4G = '4g'
TYPE_5G = '5g'
# SONET
@ -1061,6 +1062,7 @@ class InterfaceTypeChoices(ChoiceSet):
(TYPE_GSM, 'GSM'),
(TYPE_CDMA, 'CDMA'),
(TYPE_LTE, 'LTE'),
(TYPE_4G, '4G'),
(TYPE_5G, '5G'),
)
),