mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
8 lines
233 B
C#
8 lines
233 B
C#
using TweetLib.Api.Data.Notification;
|
|
|
|
namespace TweetLib.Api.Service {
|
|
public interface INotificationService : ITweetDuckService {
|
|
void RegisterDesktopNotificationScreenProvider(IDesktopNotificationScreenProvider provider);
|
|
}
|
|
}
|