mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 23:19:40 +00:00
13 lines
244 B
Python
13 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']
|
|
|
|
|