Files
better-genshin-impact/BetterGenshinImpact/Service/Interface/IUpdateService.cs
2025-01-13 01:17:11 +08:00

14 lines
340 B
C#

using BetterGenshinImpact.Model;
using System.Threading.Tasks;
namespace BetterGenshinImpact.Service.Interface;
public interface IUpdateService
{
/// <summary>
/// I will check the update and completed the update if needed
/// </summary>
/// <returns></returns>
public Task CheckUpdateAsync(UpdateOption option);
}