1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-09-27 17:32:13 +02:00
GiantsTools/Giants.Services/Store/IVersioningStore.cs
2022-09-08 22:31:24 -07:00

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);
}
}