10 lines
190 B
C#
10 lines
190 B
C#
namespace Melskin.Controls;
|
|
#region Internal Implementation
|
|
|
|
internal interface IToastHost
|
|
{
|
|
void AddToast(ToastControl toast);
|
|
void RemoveToast(ToastControl toast);
|
|
}
|
|
#endregion
|