GiantsTools/Giants.Services/Store/IVersioningStore.cs

13 lines
268 B
C#
Raw Normal View History

namespace Giants.Services
{
2022-09-09 07:31:24 +02:00
using System.Collections.Generic;
using System.Threading.Tasks;
2022-09-05 22:42:41 +02:00
public interface IVersioningStore
{
2022-09-09 07:31:24 +02:00
Task<IEnumerable<VersionInfo>> GetVersions();
2022-09-05 22:42:41 +02:00
Task UpdateVersionInfo(VersionInfo versionInfo);
}
}