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