mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 15:13:33 +00:00
9 lines
231 B
Python
9 lines
231 B
Python
from networks.models import Networks
|
|
from rest_framework import serializers
|
|
|
|
|
|
class NetworksSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Networks
|
|
fields = ["name", "status", "device", "forward"]
|