1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Core/Features/TweetDeck/ISoundNotificationHandler.cs

7 lines
169 B
C#

namespace TweetLib.Core.Features.TweetDeck {
public interface ISoundNotificationHandler {
void Unregister(string url);
void Register(string url, string path);
}
}