replace Bazored.Toast with custom Toast component
This commit is contained in:
31
src/Web/Shared/Components/Toast/ToastLevel.cs
Normal file
31
src/Web/Shared/Components/Toast/ToastLevel.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
// <copyright file="ToastLevel.cs" company="MUnique">
|
||||
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
|
||||
// </copyright>
|
||||
|
||||
namespace MUnique.OpenMU.Web.Shared.Components.Toast;
|
||||
|
||||
/// <summary>
|
||||
/// The level of a toast message.
|
||||
/// </summary>
|
||||
public enum ToastLevel
|
||||
{
|
||||
/// <summary>
|
||||
/// Informational message.
|
||||
/// </summary>
|
||||
Info,
|
||||
|
||||
/// <summary>
|
||||
/// Success message.
|
||||
/// </summary>
|
||||
Success,
|
||||
|
||||
/// <summary>
|
||||
/// Warning message.
|
||||
/// </summary>
|
||||
Warning,
|
||||
|
||||
/// <summary>
|
||||
/// Error message.
|
||||
/// </summary>
|
||||
Error,
|
||||
}
|
||||
Reference in New Issue
Block a user