mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-05-05 09:30:05 +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)
|