mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
6 lines
122 B
C#
6 lines
122 B
C#
namespace TweetLib.Api {
|
|
public interface ITweetDuckApi {
|
|
T? FindService<T>() where T : class, ITweetDuckService;
|
|
}
|
|
}
|