This repository has been archived on 2026-08-10. You can view files and clone it, but cannot push or open issues or pull requests.
2023-05-04 12:05:13 +05:30

13 lines
243 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace GMCabsDriverAssistant.Services
{
public interface IBatteryInfo
{
void StartSetting();
bool CheckIsIgnoringBatteryOptimizations();
}
}