mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
7 lines
230 B
Python
7 lines
230 B
Python
|
from django.db import models
|
||
|
|
||
|
|
||
|
class VideoProviderConfig(models.Model):
|
||
|
provider_id = models.CharField(max_length=128, unique=True, help_text="Provider ID")
|
||
|
settings = models.TextField(help_text="Video provider settings")
|