using System.Collections.Generic; using System.Threading.Tasks; using API.DTOs.Update; namespace API.Interfaces.Services { public interface IVersionUpdaterService { Task CheckForUpdate(); Task PushUpdate(UpdateNotificationDto update); Task> GetAllReleases(); } }