mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-11-24 01:37:22 +01: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);
|
|
}
|
|
}
|