Change names not to use the same name for a namespace and a type in that namespace
[platform/core/csapi/tizenfx.git] / src / Tizen.System / Feedback / FeedbackType.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.System
10 {
11     /// <summary>
12     /// Enumeration for feedback device types.
13     /// </summary>
14     public enum FeedbackType
15     {
16         /// <summary>
17         ///  Sound and Vibration
18         /// </summary>
19         All = 0,
20         /// <summary>
21         /// Sound feedback
22         /// </summary>
23         Sound = Interop.Feedback.FeedbackType.Sound,
24         /// <summary>
25         /// Vibration
26         /// /// </summary>
27         Vibration = Interop.Feedback.FeedbackType.Vibration,
28     }
29 }