mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-29 03:15:51 +02:00
9 lines
202 B
C#
9 lines
202 B
C#
using System.Net;
|
|
|
|
namespace TweetLib.Browser.Interfaces {
|
|
public interface IResourceProvider<T> {
|
|
T Status(HttpStatusCode code, string message);
|
|
T File(byte[] contents, string extension);
|
|
}
|
|
}
|