1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-01-15 14:42:46 +01:00
TweetDuck/lib/TweetLib.Core/Features/Notifications/INotificationInterface.cs

11 lines
256 B
C#

namespace TweetLib.Core.Features.Notifications {
public interface INotificationInterface {
bool FreezeTimer { get; set; }
bool IsHovered { get; }
void DisplayTooltip(string? text);
void FinishCurrentNotification();
void ShowTweetDetail();
}
}