Files
Wino-Mail/Wino.Core.Domain/Interfaces/IStoreUpdateService.cs
2026-03-08 11:22:41 +01:00

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();
}