GiantsTools/Giants.Services/Store/IUpdaterStore.cs

12 lines
201 B
C#

namespace Giants.Services
{
using System.Threading.Tasks;
public interface IUpdaterStore
{
Task<VersionInfo> GetVersionInfo(string appName);
Task Initialize();
}
}