Files
BITKit/Src/Core/UX/IUXSnackBar.cs
CortexCore f8bcf8a4d4 1
2025-04-28 15:11:01 +08:00

17 lines
267 B
C#

namespace Net.BITKit.UX.SnackBar
{
public enum Severity
{
Normal,
Info,
Success,
Warning,
Error
}
public interface ISnackBar
{
void Add(string message, Severity severity = Severity.Normal);
}
}