12 lines
228 B
C#
12 lines
228 B
C#
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace BetterEN5.Services
|
||
|
|
{
|
||
|
|
public interface ITouchFixService
|
||
|
|
{
|
||
|
|
Task ApplyFixAsync();
|
||
|
|
bool IsTouchWorkingCorrectly();
|
||
|
|
Task<bool> ForceTouchEnableAsync();
|
||
|
|
}
|
||
|
|
}
|