mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-23 01:44:26 +08:00
11 lines
406 B
C#
11 lines
406 B
C#
namespace LanMountainDesktop.Services.Plonds;
|
|
|
|
internal interface IPlondsService
|
|
{
|
|
Task<PlondsLatestResult> FindLatestAsync(Version currentVersion, CancellationToken cancellationToken);
|
|
|
|
Task<PlondsPrepareResult> FindAndPrepareLatestAsync(CancellationToken cancellationToken);
|
|
|
|
Task<PlondsPrepareResult> FindAndPrepareLatestAsync(Version currentVersion, CancellationToken cancellationToken);
|
|
}
|