from django.db import models
from faculty.models import Faculty
from semester_block.models import Semester_block


# Create your models here.
class Module(models.Model):
    name = models.CharField(max_length=255)
    code = models.CharField(max_length=255,unique=True)

    def __str__(self):
        return f"Id: {self.id}, {self.code}: {self.name}"