1 // Copyright 2016 by Samsung Electronics, Inc.,
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.
9 namespace Tizen.Applications
12 /// Class for event arguments of the badge event
14 public class BadgeEventArgs
17 /// Enumeration for badge action.
19 public enum Action : int
27 /// Badge was removed.
32 /// Badge was updated.
38 /// Property for Badge object.
40 public Badge Badge { get; internal set; }
43 /// Property for Action value.
45 public Action Reason { get; internal set; }