ITRadio/server/api/models.py

11 lines
358 B
Python

# from django.db import models
# class NowPlayingSong(models.Model):
# title = models.CharField(max_length=255)
# artist = models.CharField(max_length=255)
# album = models.CharField(max_length=255, blank=True, null=True)
# genre = models.CharField(max_length=100, blank=True, null=True)
# art = models.URLField(blank=True, null=True)