mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 13:56:01 +01:00
11 lines
200 B
Python
Executable File
11 lines
200 B
Python
Executable File
# -*- 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() |