mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-12-03 15:38:21 +01:00
6 lines
119 B
C#
6 lines
119 B
C#
namespace TweetLib.Browser.Interfaces {
|
|
public interface IResponseProcessor {
|
|
byte[] Process(byte[] response);
|
|
}
|
|
}
|