Revert "Add Test cases for app shortcut, managedapps"
[profile/tv/apps/dotnet/home.git] / LibTVRefCommonPortable / DataModels / StateDescription.cs
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 namespace LibTVRefCommonPortable.DataModels
18 {
19     /// <summary>
20     /// A class represnts a state of a Shortcut.
21     /// </summary>
22     public class StateDescription
23     {
24         /// <summary>
25         /// Constructor.
26         /// </summary>
27         public StateDescription()
28         {
29             Label = "";
30             IconPath = "";
31         }
32
33         /// <summary>
34         /// A Shortcut label.
35         /// </summary>
36         public string Label
37         {
38             get;
39             set;
40         }
41
42         /// <summary>
43         /// A Shortcut icon path.
44         /// </summary>
45         public string IconPath
46         {
47             get;
48             set;
49         }
50
51         /// <summary>
52         /// A Action instance to be called when a Shortcut is pressed.
53         /// </summary>
54         public IAction Action
55         {
56             get;
57             set;
58         }
59
60     }
61 }