Files
Wino-Mail/Wino.Core.Domain/Interfaces/IStoreUpdateService.cs
T

13 lines
258 B
C#
Raw Normal View History

2026-03-08 11:22:41 +01:00
using System.Threading.Tasks;
namespace Wino.Core.Domain.Interfaces;
public interface IStoreUpdateService
{
bool HasAvailableUpdate { get; }
Task<bool> RefreshAvailabilityAsync(bool showNotification = false);
Task<bool> StartUpdateAsync();
}