from django.db import models


# Create your models here.
class DataStore:

    """Collection of virtual disks.
    """

    name = models.CharField(
        max_length=100,
        unique=True,
        verbose_name="name",
        help_text="Name of the data store.",
    )
    remote_ID = models.CharField(
        max_length=40,
        unique=True,
        verbose_name="remote_ID",
        help_text="ID, which helps access the data store.",
    )
    # vm