GiantsTools/Giants.Services/Services/IUpdaterService.cs

10 lines
176 B
C#

namespace Giants.Services
{
using System.Threading.Tasks;
public interface IUpdaterService
{
Task<VersionInfo> GetVersionInfo(string gameName);
}
}