Initial implementation of vEE service

Change-Id: I774d7266220163cf2afd00cfc2161b04aec32d1e
diff --git a/xos/tosca/resources/veeservice.py b/xos/tosca/resources/veeservice.py
new file mode 100644
index 0000000..8a3639a
--- /dev/null
+++ b/xos/tosca/resources/veeservice.py
@@ -0,0 +1,8 @@
+from service import XOSService
+from services.vee.models import VEEService
+
+class VEEService(XOSService):
+    provides = "tosca.nodes.VEEService"
+    xos_model = VEEService
+    copyin_props = ["view_url", "icon_url", "enabled", "published", "public_key", "versionNumber"]
+