1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-16 06:31:42 +02:00
Files

7 lines
153 B
C#

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