Skip to content

Instantly share code, notes, and snippets.

@yerkbn
Created October 25, 2018 15:35
Show Gist options
  • Save yerkbn/6c59ae7e207ef69a47a296f00e822e12 to your computer and use it in GitHub Desktop.
Save yerkbn/6c59ae7e207ef69a47a296f00e822e12 to your computer and use it in GitHub Desktop.
from rest_framework import serializers
class UserSigninSerializer(serializers.Serializer):
username = serializers.CharField(required = True)
password = serializers.CharField(required = True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment