mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 14:42:46 +01:00
9 lines
173 B
C#
9 lines
173 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace TweetLib.Core.Systems.Updates {
|
|
public interface IUpdateCheckClient {
|
|
bool CanCheck { get; }
|
|
Task<UpdateInfo> Check();
|
|
}
|
|
}
|