mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-28 04:28:01 +00:00
5 lines
163 B
Python
5 lines
163 B
Python
from django.db import models
|
|
from spa.models._Activity import _Activity
|
|
|
|
class MixPlay(_Activity):
|
|
mix = models.ForeignKey('spa.Mix', related_name='plays') |