1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-07-19 20:04:37 +02:00
TweetDuck/lib/TweetLib.Browser.CEF/Interfaces/IErrorCodeAdapter.cs

7 lines
153 B
C#

namespace TweetLib.Browser.CEF.Interfaces {
public interface IErrorCodeAdapter<T> {
bool IsAborted(T errorCode);
string? GetName(T errorCode);
}
}