mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-22 09:18:13 +00:00
11 lines
246 B
Python
11 lines
246 B
Python
from django.db import models
|
|
from spa.models.basemodel import BaseModel
|
|
|
|
class Label(BaseModel):
|
|
class Meta:
|
|
app_label = 'spa'
|
|
|
|
name = models.CharField(max_length=100)
|
|
|
|
def __unicode__(self):
|
|
return self.name |