reimbursinator/back/backend/models.py

14 lines
273 B
Python
Raw Normal View History

from django.db import models
# Create your models here.
class BackEnd(models.Model):
title = models.CharField(max_length=200)
description = models.TextField()
def __str__(self):
"""A string representation of the model."""
return self.title