// ******************************************************************
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
// THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE.
// ******************************************************************
namespace Microsoft.Toolkit.Uwp.Notifications
{
///
/// The types of glyphs that can be placed on a badge.
///
public enum BadgeGlyphValue
{
///
/// No glyph. If there is a numeric badge, or a glyph currently on the badge,
/// it will be removed.
///
None = 0,
///
/// A glyph representing application activity.
///
Activity,
///
/// A glyph representing an alert.
///
Alert,
///
/// A glyph representing an alarm.
///
Alarm,
///
/// A glyph representing availability status.
///
Available,
///
/// A glyph representing away status
///
Away,
///
/// A glyph representing busy status.
///
Busy,
///
/// A glyph representing that a new message is available.
///
NewMessage,
///
/// A glyph representing that media is paused.
///
Paused,
///
/// A glyph representing that media is playing.
///
Playing,
///
/// A glyph representing unavailable status.
///
Unavailable,
///
/// A glyph representing an error.
///
Error,
///
/// A glyph representing attention status.
///
Attention
}
}