change license
[platform/core/csapi/tizenfx.git] / src / Tizen.Network.IoTConnectivity / Tizen.Network.IoTConnectivity / PlatformInformationFoundEventArgs.cs
1  /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 namespace Tizen.Network.IoTConnectivity
19 {
20     /// <summary>
21     /// This class is an event arguments of the PlatformInformationFound event.
22     /// </summary>
23     public class PlatformInformationFoundEventArgs
24     {
25         internal PlatformInformationFoundEventArgs() { }
26
27         /// <summary>
28         /// Indicates the request id
29         /// </summary>
30         public int RequestId { get; internal set; }
31
32         /// <summary>
33         /// Indicates the platform identifier
34         /// </summary>
35         public string PlatformId { get; internal set; }
36
37         /// <summary>
38         /// Indicates the name of manufacturer
39         /// </summary>
40         public string ManufacturerName { get; internal set; }
41
42         /// <summary>
43         /// Indicates URL of the manufacturer
44         /// </summary>
45         public string ManufacturerURL { get; internal set; }
46
47         /// <summary>
48         /// Indicates model number as designated by manufacturer
49         /// </summary>
50         public string ModelNumber { get; internal set; }
51
52         /// <summary>
53         /// Indicates manufacturing date of the device
54         /// </summary>
55         public string DateOfManufacture { get; internal set; }
56
57         /// <summary>
58         /// Indicates version of platfrom defined by manufacturer
59         /// </summary>
60         public string PlatformVersion { get; internal set; }
61
62         /// <summary>
63         /// Indicates version of platfrom resident OS
64         /// </summary>
65         public string OsVersion { get; internal set; }
66
67         /// <summary>
68         /// Indicates version of platform Hardware
69         /// </summary>
70         public string HardwareVersion { get; internal set; }
71
72         /// <summary>
73         /// Indicates version of device firmware
74         /// </summary>
75         public string FirmwareVersion { get; internal set; }
76
77         /// <summary>
78         /// Indicates URL that points to support information from manufacturer
79         /// </summary>
80         public string SupportUrl { get; internal set; }
81
82         /// <summary>
83         /// Indicates reference time of the device
84         /// </summary>
85         public string SystemTime { get; internal set; }
86     }
87 }