mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-07-17 12:01:17 +08:00
6 lines
101 B
Python
6 lines
101 B
Python
from django.db import models
|
|
|
|
|
|
class Task(models.Model):
|
|
name = models.CharField(max_length=255)
|