// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
///
/// States of the control.
///
public enum ThumbRateState
{
///
/// No thumb has been clicked.
///
None,
///
/// The thumb up has been clicked.
///
Liked,
///
/// The thumb down has been clicked.
///
Disliked,
}