d05e87c97a8718036662d7eab832afb0319a2802
[platform/core/csapi/tizenfx.git] / src / 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     /// This class is an event arguments of the DeviceInformationFound event.
13     /// </summary>
14     public class DeviceInformationFoundEventArgs
15     {
16         internal DeviceInformationFoundEventArgs() { }
17
18         /// <summary>
19         /// The request id
20         /// </summary>
21         public int RequestId { get; internal set; }
22
23         /// <summary>
24         /// Indicates human friendly name for device
25         /// </summary>
26         public string Name { get; internal set; }
27
28         /// <summary>
29         /// Indicates spec version of the core specification
30         /// </summary>
31         public string SpecVersion { get; internal set; }
32
33         /// <summary>
34         /// Indicates unique identifier for OIC device
35         /// </summary>
36         public string DeviceId { get; internal set; }
37
38         /// <summary>
39         /// Indicates version of the specs this device data model is implemented to
40         /// </summary>
41         public string DataModelVersion { get; internal set; }
42     }
43 }