mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-19 20:04:37 +02: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);
|
|
}
|
|
}
|