mirror of https://github.com/jumpserver/jumpserver
11 lines
222 B
Python
11 lines
222 B
Python
|
|
||
|
from assets.models import Networking
|
||
|
from .common import AssetSerializer
|
||
|
|
||
|
__all__ = ['NetworkingSerializer']
|
||
|
|
||
|
|
||
|
class NetworkingSerializer(AssetSerializer):
|
||
|
class Meta(AssetSerializer.Meta):
|
||
|
model = Networking
|