from django.db import models

class EstadoEmpresa(models.Model):
    nombre_estado = models.CharField(max_length=100)

    class Meta:
        db_table = 'estado_empresa'
        
        
    def __str__(self):
        return self.nombre_estado
