Django backend for WorkX project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

models.py 196 B

123456789
  1. from django.db import models
  2. class Client(models.Model):
  3. name = models.CharField(max_length=30)
  4. tax_id = models.CharField(max_length=30)
  5. def __str__(self):
  6. return self.name