mirror of
https://github.com/Dadechin/Dashboard-XRoom.git
synced 2025-07-17 07:34:33 +00:00
7 lines
118 B
Python
7 lines
118 B
Python
|
from django.db import models
|
||
|
|
||
|
class Role(models.Model):
|
||
|
name = models.CharField(max_length=100, unique=True)
|
||
|
|
||
|
|