diff --git a/Gotrue/NetworkStatus.cs b/Gotrue/NetworkStatus.cs index e467f83..8de757d 100644 --- a/Gotrue/NetworkStatus.cs +++ b/Gotrue/NetworkStatus.cs @@ -1,6 +1,7 @@ using System; using System.Net.NetworkInformation; using System.Threading.Tasks; +using Supabase.Gotrue.Interfaces; namespace Supabase.Gotrue { /// @@ -12,12 +13,12 @@ namespace Supabase.Gotrue /// public class NetworkStatus { - private readonly Client _client; + private readonly IGotrueClient _client; /// /// Set up a listener for the network status. /// /// - public NetworkStatus(Client client) + public NetworkStatus(IGotrueClient client) { _client = client; }