namespace Wino.Core.Domain.Enums;
///
/// Specifies the animation effect to use during a slide navigation transition.
///
public enum NavigationTransitionEffect
{
///
/// The navigation transition effect starts from the left edge of the frame.
///
FromLeft,
///
/// The navigation transition effect starts from the right edge of the frame.
///
FromRight,
///
/// The navigation transition effect starts from the top edge of the frame.
///
FromTop,
///
/// The navigation transition effect starts from the bottom edge of the frame.
///
FromBottom
}