[CORD-1942] Define M-CORD Subscriber
Change-Id: Ia0bc036048f8ff13762770a7d59cc045187c84fb
diff --git a/xos/models/mcord.xproto b/xos/models/mcord.xproto
new file mode 100644
index 0000000..b64aa65
--- /dev/null
+++ b/xos/models/mcord.xproto
@@ -0,0 +1,15 @@
+option app_label = "mcord";
+option name = "mcord";
+
+message MCordSubscriberService (Service) {
+ option verbose_name = "MCORD Service";
+ option description = "The Mobile Subscriber service in CORD";
+}
+
+message MCordSubscriberInstance (ServiceInstance) {
+ option verbose_name = "MCORD Subscriber";
+ option description = "This model holds the informations of a Mobile Subscriber in CORD";
+
+ required string imsi_number = 1 [max_length = 30, content_type = "stripped", blank = False, null = False, db_index = False];
+ required string apn_number = 1 [max_length = 30, content_type = "stripped", blank = False, null = False, db_index = False];
+}