Initial implementation of vEE service
Change-Id: I774d7266220163cf2afd00cfc2161b04aec32d1e
diff --git a/xos/models.py b/xos/models.py
new file mode 100644
index 0000000..43d4c62
--- /dev/null
+++ b/xos/models.py
@@ -0,0 +1,17 @@
+from django.db import models
+from core.models import Service
+import traceback
+from xos.exceptions import *
+from xos.config import Config
+
+VEE_KIND = "vee"
+
+class VEEService(Service):
+ KIND = VEE_KIND
+
+ class Meta:
+ app_label = "vee"
+ verbose_name = "VEE Service"
+
+
+ autoconfig = models.BooleanField(default=True, help_text="Autoconfigure the vEE")