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