mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 14:42:46 +01:00
11 lines
256 B
C#
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();
|
|
}
|
|
}
|