12ac6fd98859c5ccfa2a11220740e3e8f3a54dcf
[platform/core/csapi/tizenfx.git] / src / Tizen.System / Feedback / FeedbackPattern.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.Feedback
10 {
11     /// <summary>
12     /// String and Enumeration for feedback patterns.
13     /// </summary>
14     internal struct FeedbackPattern
15     {
16         internal int PatternNumber;
17         internal string PatternString;
18
19         internal FeedbackPattern(int n, string s)
20         {
21             PatternNumber = n;
22             PatternString = s;
23         }
24     }
25 }