mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
10 lines
202 B
C#
10 lines
202 B
C#
namespace TweetLib.Browser.CEF.Interfaces {
|
|
public interface IDragDataAdapter<T> {
|
|
bool IsLink(T data);
|
|
string GetLink(T data);
|
|
|
|
bool IsFragment(T data);
|
|
string GetFragmentAsText(T data);
|
|
}
|
|
}
|