Files
GhostEngine/Ghost.Editor.Core/Notifications/INotificationService.cs

10 lines
297 B
C#

using CommunityToolkit.WinUI.Behaviors;
namespace Ghost.Editor.Core.Notifications;
public interface INotificationService
{
public void ShowNotification(string? message, MessageType type, int duration = 5, string? title = null);
public void ShowNotification(Notification notification);
}