mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-04 07:54:29 +00:00
9 lines
235 B
Python
9 lines
235 B
Python
from django.db import models
|
|
from spa.models.Mix import Mix
|
|
from spa.models._Activity import _Activity
|
|
|
|
class MixPlay(_Activity):
|
|
class Meta:
|
|
app_label = 'spa'
|
|
|
|
mix = models.ForeignKey(Mix, related_name='plays') |