mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-04 14:25:37 +01:00
12 lines
201 B
C#
12 lines
201 B
C#
namespace Giants.Services
|
|
{
|
|
using System.Threading.Tasks;
|
|
|
|
public interface IUpdaterStore
|
|
{
|
|
Task<VersionInfo> GetVersionInfo(string appName);
|
|
|
|
Task Initialize();
|
|
}
|
|
}
|