mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-26 04:59:03 +02:00
8 lines
181 B
C#
8 lines
181 B
C#
using System;
|
|
|
|
namespace TweetLib.Browser.Events {
|
|
public abstract class BrowserLoadedEventArgs : EventArgs {
|
|
public abstract void AddDictionaryWords(params string[] word);
|
|
}
|
|
}
|