17 lines
267 B
C#
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);
|
||
|
}
|
||
|
}
|