// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace CommunityToolkit.WinUI.Notifications
{
///
/// Specify the desired cropping of the image.
///
public enum ToastGenericAppLogoCrop
{
///
/// Cropping uses the default behavior of the renderer.
///
Default,
///
/// Image is not cropped.
///
[EnumString("none")]
None,
///
/// Image is cropped to a circle shape.
///
[EnumString("circle")]
Circle
}
}