mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-27 03:57:43 +00:00
9 lines
210 B
Python
Executable File
9 lines
210 B
Python
Executable File
from django.db import models
|
|
from _BaseModel import _BaseModel
|
|
|
|
class _Lookup(_BaseModel):
|
|
description = models.CharField(max_length=100)
|
|
|
|
def __unicode__(self):
|
|
return self.description
|