mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-24 03:46:01 +01:00
7 lines
169 B
C#
7 lines
169 B
C#
|
namespace TweetLib.Core.Features.TweetDeck {
|
||
|
public interface ISoundNotificationHandler {
|
||
|
void Unregister(string url);
|
||
|
void Register(string url, string path);
|
||
|
}
|
||
|
}
|