1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-16 08:34:06 +02:00
TweetDuck/lib/TweetLib.Core/Browser/IResourceProvider.cs

9 lines
209 B
C#

using System.Net;
namespace TweetLib.Core.Browser{
public interface IResourceProvider<T>{
T Status(HttpStatusCode code, string message);
T File(byte[] bytes, string extension);
}
}