13 lines
258 B
C#
13 lines
258 B
C#
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace Wino.Core.Domain.Interfaces;
|
||
|
|
|
||
|
|
public interface IStoreUpdateService
|
||
|
|
{
|
||
|
|
bool HasAvailableUpdate { get; }
|
||
|
|
|
||
|
|
Task<bool> RefreshAvailabilityAsync(bool showNotification = false);
|
||
|
|
|
||
|
|
Task<bool> StartUpdateAsync();
|
||
|
|
}
|