add slice tags
[plstackapi.git] / planetstack / core / models / deploymentnetwork.py
1 import os
2 from django.db import models
3 from core.models import PlCoreBase
4
5 # Create your models here.
6
7 class DeploymentNetwork(PlCoreBase):
8     name = models.CharField(max_length=200, unique=True, help_text="Name of the Deployment Network")
9
10     def __unicode__(self):  return u'%s' % (self.name)
11