mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-10-31 21:05:38 +01:00
13 lines
268 B
C#
13 lines
268 B
C#
namespace Giants.Services
|
|
{
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
public interface IVersioningStore
|
|
{
|
|
Task<IEnumerable<VersionInfo>> GetVersions();
|
|
|
|
Task UpdateVersionInfo(VersionInfo versionInfo);
|
|
}
|
|
}
|