raflop/ToastNotifications

View on GitHub
Src/ToastNotifications/Core/INotificationAnimator.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace ToastNotifications.Core
{
    public interface INotificationAnimator
    {
        void Setup();
        void PlayShowAnimation();
        void PlayHideAnimation();
    }
}