CORD-1345: Rename PlCoreBase to XOSBase

Change-Id: Icad4aa828dc93e9d40a6f309a519a687add2005e
diff --git a/xos/models.py b/xos/models.py
index de98a6d..e3ed68c 100644
--- a/xos/models.py
+++ b/xos/models.py
@@ -1,6 +1,6 @@
 from django.db import models
-from core.models import Service, PlCoreBase, Slice, Instance, Tenant, TenantWithContainer, Node, Image, User, Flavor, Subscriber, NetworkParameter, NetworkParameterType, Port, AddressPool
-from core.models.plcorebase import StrippedCharField
+from core.models import Service, XOSBase, Slice, Instance, Tenant, TenantWithContainer, Node, Image, User, Flavor, Subscriber, NetworkParameter, NetworkParameterType, Port, AddressPool
+from core.models.xosbase import StrippedCharField
 import os
 from django.db import models, transaction
 from django.forms.models import model_to_dict
@@ -68,7 +68,7 @@
 
 
 
-class VProgranImsi(PlCoreBase):
+class VProgranImsi(XOSBase):
     class Meta:
         app_label = APP_LABEL
         verbose_name = "vProgran Imsi"
@@ -78,7 +78,7 @@
     profile = models.CharField(max_length=20, help_text="profile name", null=True, blank=True)
 
 
-class VProgranProfile(PlCoreBase):
+class VProgranProfile(XOSBase):
 
     class Meta:
         app_label = APP_LABEL