generated from Integry/Template_NetMauiBlazorHybrid
14 lines
254 B
C#
14 lines
254 B
C#
using salesbook.Shared.Core.Interface;
|
|
|
|
namespace salesbook.Web.Core.Services;
|
|
|
|
public class NetworkService : INetworkService
|
|
{
|
|
public bool ConnectionAvailable { get; set; }
|
|
|
|
public bool IsNetworkAvailable()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
} |