from django.db import models # Create your models here. class User: def __init__(self, username, email): self.username = username self.email = email