mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-04-27 12:10:01 +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)
|