Prima configurazione e struttura
This commit is contained in:
7
SteUp.Shared/Core/Interface/IFormFactor.cs
Normal file
7
SteUp.Shared/Core/Interface/IFormFactor.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace SteUp.Shared.Core.Interface;
|
||||
|
||||
public interface IFormFactor
|
||||
{
|
||||
public string GetFormFactor();
|
||||
public string GetPlatform();
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace SteUp.Shared.Core.Interface.IntegryApi;
|
||||
|
||||
public interface IIntegryApiService
|
||||
{
|
||||
Task<bool> SystemOk();
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace SteUp.Shared.Core.Interface.System.Network;
|
||||
|
||||
public interface INetworkService
|
||||
{
|
||||
public bool ConnectionAvailable { get; set; }
|
||||
|
||||
public bool IsNetworkAvailable();
|
||||
}
|
||||
Reference in New Issue
Block a user