GiantsTools/Giants.Services/Store/FileVersioningStore.cs

24 lines
523 B
C#
Raw Normal View History

namespace Giants.Services
{
using System;
using System.Threading.Tasks;
2022-09-05 22:42:41 +02:00
public class FileVersioningStore : IVersioningStore
{
public Task<VersionInfo> GetVersionInfo(string appName)
{
throw new NotImplementedException();
}
2022-09-05 22:42:41 +02:00
public Task UpdateVersionInfo(VersionInfo versionInfo)
{
throw new NotImplementedException();
}
public Task Initialize()
{
throw new NotImplementedException();
}
}
}