1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Browser.CEF/Interfaces/IDragDataAdapter.cs

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);
}
}