Enum defining notification UI zones. It lists TopCenter, Center, and LowerCenter for positioning notification elements.
namespace KOTH.Notification;
/// <summary>
/// Specifies the layout zones for notifications within the user interface.
/// </summary>
public enum ENotificationZone
{
/// <summary>
/// Specifies a notification display zone located at the top-center of the user interface.
/// </summary>
TopCenter,
/// <summary>
/// Specifies a notification display zone located at the center of the user interface.
/// </summary>
Center,
/// <summary>
/// Specifies a notification display zone located at the lower-center of the user interface.
/// </summary>
LowerCenter,
}