[NUI] Sync dalihub/TizenFX and Samsung/TizenFX (#530)
[platform/core/csapi/tizenfx.git] / internals / src / Tizen.CallManager / Tizen.CallManager / ConferenceCallData.cs
1 /*
2  * Copyright (c) 2018 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 using System;
18
19 namespace Tizen.CallManager
20 {
21     /// <summary>
22     /// A class which defines the properties of conference call.
23     /// </summary>
24     public class ConferenceCallData
25     {
26         internal uint CallId;
27         internal string Number;
28         internal int PersonIndex;
29         internal CallNameMode NameMode;
30         internal ConferenceCallData()
31         {
32         }
33
34         /// <summary>
35         /// Conference call ID.
36         /// </summary>
37         public uint Id
38         {
39             get
40             {
41                 return CallId;
42             }
43         }
44
45         /// <summary>
46         /// Call number.
47         /// </summary>
48         public string CallNumber
49         {
50             get
51             {
52                 return Number;
53             }
54         }
55
56         /// <summary>
57         /// Person ID.
58         /// </summary>
59         public int PersonId
60         {
61             get
62             {
63                 return PersonIndex;
64             }
65         }
66
67         /// <summary>
68         /// Call name mode.
69         /// </summary>
70         public CallNameMode Mode
71         {
72             get
73             {
74                 return NameMode;
75             }
76         }
77     }
78 }