1
This commit is contained in:
16
Src/Core/UX/IUXSnackBar.cs
Normal file
16
Src/Core/UX/IUXSnackBar.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
namespace Net.BITKit.UX.SnackBar
|
||||
{
|
||||
public enum Severity
|
||||
{
|
||||
Normal,
|
||||
Info,
|
||||
Success,
|
||||
Warning,
|
||||
Error
|
||||
}
|
||||
public interface ISnackBar
|
||||
{
|
||||
void Add(string message, Severity severity = Severity.Normal);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user