mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
12 lines
244 B
Python
12 lines
244 B
Python
|
|
from rest_framework import serializers
|
|
from networks.models import Networks
|
|
|
|
|
|
class NetworksSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
model = Networks
|
|
fields = ['name', 'status', 'device', 'forward']
|
|
|
|
|