summaryrefslogtreecommitdiff
path: root/src/Tizen.Messaging/Tizen.Messaging.Messages/MessagesAddress.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Tizen.Messaging/Tizen.Messaging.Messages/MessagesAddress.cs')
-rwxr-xr-xsrc/Tizen.Messaging/Tizen.Messaging.Messages/MessagesAddress.cs45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/Tizen.Messaging/Tizen.Messaging.Messages/MessagesAddress.cs b/src/Tizen.Messaging/Tizen.Messaging.Messages/MessagesAddress.cs
new file mode 100755
index 0000000..19143fb
--- /dev/null
+++ b/src/Tizen.Messaging/Tizen.Messaging.Messages/MessagesAddress.cs
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+namespace Tizen.Messaging.Messages
+{
+ /// <summary>
+ /// A class to manage informations of message address.
+ /// </summary>
+ public class MessagesAddress
+ {
+ internal RecipientType Type;
+ /// <summary>
+ /// The address of the sender/recipient
+ /// </summary>
+ public string Number { get; }
+
+ /// <summary>
+ /// Creates a message address.
+ /// </summary>
+ /// <param name="number">The recipient's address to receive a message</param>
+ public MessagesAddress(string number)
+ {
+ Number = number;
+ }
+
+ internal MessagesAddress(RecipientType type, string number)
+ {
+ Type = type;
+ Number = number;
+ }
+ }
+}