sharee.bike-App/TINKLib/Model/Device/IWebView.cs

9 lines
161 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
namespace TINK.Model.Device
{
2022-09-06 16:08:19 +02:00
public interface IWebView
{
/// <summary> Clears the cookie cache for all web views. </summary>
void ClearCookies();
}
2021-05-13 20:03:07 +02:00
}