mirror of
				https://github.com/usmannasir/cyberpanel.git
				synced 2025-10-31 18:36:17 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			293 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			293 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| 
 | |
| from django.db import models
 | |
| 
 | |
| # Create your models here.
 | |
| 
 | |
| 
 | |
| class version(models.Model):
 | |
|     currentVersion = models.CharField(max_length=50)
 | |
|     build = models.IntegerField()
 | |
| 
 | |
| class CyberPanelCosmetic(models.Model):
 | |
|     MainDashboardCSS = models.TextField(default='') |