namespace Giants.Services { using System.Collections.Generic; using System.Threading.Tasks; public interface IVersioningStore { Task> GetVersions(); Task UpdateVersionInfo(VersionInfo versionInfo); } }