mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-26 09:39:49 +08:00
14 lines
340 B
C#
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);
|
|
}
|