[IoTConnectivity] Added Base implementation
[platform/core/csapi/iotcon.git] / Tizen.Network.IoTConnectivity / Tizen.Network.IoTConnectivity / DeviceInformationFoundEventArgs.cs
1 /// Copyright 2016 by Samsung Electronics, Inc.,
2 ///
3 /// This software is the confidential and proprietary information
4 /// of Samsung Electronics, Inc. ("Confidential Information"). You
5 /// shall not disclose such Confidential Information and shall use
6 /// it only in accordance with the terms of the license agreement
7 /// you entered into with Samsung.
8
9 namespace Tizen.Network.IoTConnectivity
10 {
11     /// <summary>
12     /// DeviceInformationFoundEventArgs class. This class is an event arguments of the DeviceInformationFound event.
13     /// </summary>
14     public class DeviceInformationFoundEventArgs
15     {
16         /// <summary>
17         /// The request id
18         /// </summary>
19         public int RequestId { get; internal set; }
20
21         /// <summary>
22         /// Indicates human friendly name for device
23         /// </summary>
24         public string Name { get; internal set; }
25
26         /// <summary>
27         /// Indicates human friendly name for device
28         /// </summary>
29         public string SpecVersion { get; internal set; }
30
31         /// <summary>
32         /// Indicates unique identifier for OIC device
33         /// </summary>
34         public string DeviceId { get; internal set; }
35
36         /// <summary>
37         /// Indicates version of the specs this device data model is implemented to
38         /// </summary>
39         public string DataModelVersion { get; internal set; }
40     }
41 }