mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
14 lines
262 B
C#
14 lines
262 B
C#
namespace Giants.Services
|
|
{
|
|
using System.Threading.Tasks;
|
|
|
|
public interface IVersioningStore
|
|
{
|
|
Task<VersionInfo> GetVersionInfo(string appName);
|
|
|
|
Task UpdateVersionInfo(VersionInfo versionInfo);
|
|
|
|
Task Initialize();
|
|
}
|
|
}
|