1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-01-24 03:46:01 +01:00
TweetDuck/lib/TweetLib.Core/Systems/Updates/IUpdateCheckClient.cs

9 lines
173 B
C#
Raw Permalink Normal View History

using System.Threading.Tasks;
namespace TweetLib.Core.Systems.Updates {
public interface IUpdateCheckClient {
bool CanCheck { get; }
Task<UpdateInfo> Check();
}
}