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