mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-08-17 08:21:05 +02:00
12 lines
267 B
Python
12 lines
267 B
Python
from django.db import models
|
|
|
|
|
|
class License(models.Model):
|
|
"""A Base license model to be used in Media"""
|
|
|
|
title = models.CharField(max_length=100, unique=True)
|
|
description = models.TextField(blank=True)
|
|
|
|
def __str__(self):
|
|
return self.title
|