using System.Threading.Tasks; namespace Wino.Core.Domain.Interfaces; public interface IStoreUpdateService { bool HasAvailableUpdate { get; } Task RefreshAvailabilityAsync(bool showNotification = false); Task StartUpdateAsync(); }